Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The Events api $on, $off $once is #5

Open
Relax-87 opened this issue May 8, 2022 · 0 comments
Open

The Events api $on, $off $once is #5

Relax-87 opened this issue May 8, 2022 · 0 comments

Comments

@Relax-87
Copy link

Relax-87 commented May 8, 2022

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)
      }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant