Skip to content

Instantly share code, notes, and snippets.

@fliptheweb
Created January 24, 2017 06:25
Show Gist options
  • Save fliptheweb/5ebbf0925604e00ae64cfc495175306a to your computer and use it in GitHub Desktop.
Save fliptheweb/5ebbf0925604e00ae64cfc495175306a to your computer and use it in GitHub Desktop.
var vm = new Vue({
el: '#demo',
data: {
firstName: 'Foo',
lastName: 'Bar'
},
computed: {
fullName: function () {
return this.firstName + ' ' + this.lastName
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment