lyh
2025-06-05 0d27c826c71c323ff605cd27a53bbc5a0c96f752
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)
    },
  }
}