Skip to content

Instantly share code, notes, and snippets.

@ammezie
Created November 13, 2019 20:58
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/764627a159dc02370df9e10d8c3d61c7 to your computer and use it in GitHub Desktop.
Save ammezie/764627a159dc02370df9e10d8c3d61c7 to your computer and use it in GitHub Desktop.
// resources/js/components/ChatRoom.vue
...
this.channel.on("typing.start", event => {
this.isTyping = true;
this.typing = event;
});
this.channel.on("typing.stop", event => {
this.isTyping = false;
});
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment