10 lines
229 B
JavaScript
10 lines
229 B
JavaScript
export const ChartEventMixins = {
|
|
methods: {
|
|
handleClick(event, chart) {
|
|
this.handleEvent('click', event, chart)
|
|
},
|
|
handleEvent(eventName, event, chart) {
|
|
this.$emit(eventName, event, chart)
|
|
},
|
|
}
|
|
} |