Skip to content

Instantly share code, notes, and snippets.

@aliafshar
Last active December 6, 2016 10:06
Show Gist options
  • Select an option

  • Save aliafshar/15888b658cf6e1364c0ee7d6c3ab6495 to your computer and use it in GitHub Desktop.

Select an option

Save aliafshar/15888b658cf6e1364c0ee7d6c3ab6495 to your computer and use it in GitHub Desktop.
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