We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
$on
$off
$once
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) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Vue3 取消了 on off等
请将 bus.js 的下列代码段修改
The text was updated successfully, but these errors were encountered: