Emit issue on Vue 3.
Author: tejas208Created Apr 9, 2024Updated May 28, 2024
Hi,
Here is my app.js code: import mitt from 'mitt' const emitter = mitt();
app.config.globalProperties.$bus = emitter;
Here is my ActionButton.vue code
<button type="button" class="btn edit-icon btn-default" data-toggle="tooltip" :title="showDelete?'Edit':'View'" @click="getBasicDetails(data.id)" >
<button type="button" class="btn trash-icon btn-default" v-if="showDelete" data-toggle="tooltip" title="Delete" @click="deleteRecord(data.id)">
When we click on the edit button that time this.$bus.emit() event is not fire. can you please help me for the error occured.
Thanks!
Source: developit/mitt