vue-cli-electron-template
vue-cli-electron-template copied to clipboard
The Events api `$on`, `$off` `$once` is
Vue3 取消了 on off等 请将 bus.js 的下列代码段修改
原:
on (event, callback) {
this.$on(event, callback)
},
off (event, callback) {
this.$off(event, callback)
}
改:
on (event, callback) {
this.$parent.$on(event, callback)
},
off (event, callback) {
this.$parent.$off(event, callback)
}