Created
January 24, 2017 06:25
-
-
Save fliptheweb/5ebbf0925604e00ae64cfc495175306a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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