mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-08 17:12:28 +08:00
10 lines
229 B
Java
10 lines
229 B
Java
export const ChartEventMixins = {
|
|
methods: {
|
|
handleClick(event, chart) {
|
|
this.handleEvent('click', event, chart)
|
|
},
|
|
handleEvent(eventName, event, chart) {
|
|
this.$emit(eventName, event, chart)
|
|
},
|
|
}
|
|
} |