vue-cli-electron-template icon indicating copy to clipboard operation
vue-cli-electron-template copied to clipboard

The Events api `$on`, `$off` `$once` is

Open Relax-87 opened this issue 2 years ago • 0 comments

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)
      }

Relax-87 avatar May 08 '22 11:05 Relax-87