const app = new Vue({
el: '#app',
data: function() {
return {
}
},
mounted(){
window.Echo.private('user_notif')
.listen('UserNotification', (e) => {
console.log(e);
});
},
methods: {
}
});