cuikaidong
2025-08-08 794f8a3fb4df3ee18f3103433d1f34cd9ac655ec
1
2
3
4
5
6
7
8
9
10
export const ChartEventMixins = {
  methods: {
    handleClick(event, chart) {
      this.handleEvent('click', event, chart)
    },
    handleEvent(eventName, event, chart) {
      this.$emit(eventName, event, chart)
    },
  }
}