3👍
✅
I saw from the official website that $on, $off and $once methods are removed from vue 3.
https://v3-migration.vuejs.org/breaking-changes/events-api.html#_2-x-syntax
Vue 3 requires a third-party library to achieve.
index.js
import mitt from 'mitt'
const bus = mitt()
export default bus
App.vue
mounted() {
bus.on('maizuo', (data) => {
console.log(data)
})
}
Source:stackexchange.com