我想在推送另一个用户后显示新的用户数组。但是我只看到一个用户...如何实现在阵列中出现所有用户时显示所有用户的任务?
export default {
data() {
return {
users:[],
}
},
mounted() {
var presenceChannel = Echo.join('presenceChat')
.here((users) => {
this.users = users;
});
})
.joining((user) => {
this.users.push(user);
})
.leaving((user) => {
this.users.splice(this.users.indexOf(user), 1);
})