Skip to content

Instantly share code, notes, and snippets.

@Kaperskyguru
Created March 30, 2019 22:35
Show Gist options
  • Save Kaperskyguru/c9ba489a771d31a8871ddfcabe365fc7 to your computer and use it in GitHub Desktop.
Save Kaperskyguru/c9ba489a771d31a8871ddfcabe365fc7 to your computer and use it in GitHub Desktop.
methods: {
send() {
this.messages.push({
message: this.newMessage,
type: 0,
user: 'Me',
});
socket.emit('chat-message', {
message: this.newMessage,
user: this.username
});
this.newMessage = null;
},
.....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment