Skip to content

Instantly share code, notes, and snippets.

@ammezie
Created November 13, 2019 20: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/d8d9678b923f2cec841e5563988c4b6e to your computer and use it in GitHub Desktop.
Save ammezie/d8d9678b923f2cec841e5563988c4b6e to your computer and use it in GitHub Desktop.
// resources/js/ChatRoom.vue
// inside the script section
leaveChannel() {
axios.post("/api/leave-channel", {
username: this.username,
});
window.location.href = '/dashboard';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment