[Vuejs]-Emit Events and On Vuejs 2

0👍

Can you try this

created () {
 bus.$on('updated-users', fetchedUsersData)
},
methods: {
 fetchedUsersData(){
  //the fetched user data
  console.log('the fetched user data')
 }
}

Leave a comment