Vue.prototype.$bus = new Vue();
created () {
this.$bus.$on('UploadEditFile', this.getData)
},
beforeDestroy(){
this.$bus.$off('UploadEditFile');
},
methods: {
getData(id)
{
$('#UploadEditModal').modal('show');
...............
}
}
this.$bus.$emit('UploadEditFile', file.id);