Last active
December 6, 2016 10:06
-
-
Save aliafshar/15888b658cf6e1364c0ee7d6c3ab6495 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
| const appState = { | |
| 'message': 'hello' | |
| } | |
| // Register the component. | |
| vue.component('my-awesome-component', { | |
| template: '#myAwesomeComponent', | |
| data: appState | |
| }); | |
| // Kick the whole thing into action. | |
| new Vue({el: '#myAwesomePage'}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment