Skip to content

Instantly share code, notes, and snippets.

@ammezie
Last active November 13, 2019 21:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ammezie/a7fafeec81da87270047c87ef6b05d04 to your computer and use it in GitHub Desktop.
Save ammezie/a7fafeec81da87270047c87ef6b05d04 to your computer and use it in GitHub Desktop.
// resources/js/ChatRoom.vue
this.channel.on("member.removed", event => {
this.members = this.members.filter(member => {
return member.user.id !== event.user.id;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment