Lius
2025-08-21 04c5b1b9b20f22cdaae46f123d3180f6cff19f2c
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)
    },
  }
}