我正在尝试使我的应用正常运行。帮助我了解我是否需要一个事件监听器和一个事件来使此代码起作用?我需要一个事件监听器来监听用户加入和离开时的事件,或者在存在状态下自动发生的事件吗?
Echo.join('chat')
.here((users) => {
console.log('hello',users)
this.users = users;
})
.joining((user) => {
console.log('hey you', user)
this.users.push(user);
})
.leaving((user) => {
this.users.splice(this.users.indexOf(user), 1);
})