Skip to content

Instantly share code, notes, and snippets.

@paramsinghvc
Last active August 15, 2017 06:31
Show Gist options
  • Save paramsinghvc/b6a600ed2ad0d0008c3717f02841a31e to your computer and use it in GitHub Desktop.
Save paramsinghvc/b6a600ed2ad0d0008c3717f02841a31e to your computer and use it in GitHub Desktop.
new Vue({
el: '#events',
data: {
message: 'Hola Mundo'
},
methods: {
reverseMessage(e) {
this.message = this.message.split('').reverse().join('')
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment