[Vuejs]-Vue3 Sub-component pass data $on is not a function

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

Leave a comment