Skip to content

Instantly share code, notes, and snippets.

@andreipfeiffer
Last active February 2, 2017 11:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreipfeiffer/0daf303ca8813a6535dc4cb64228905e to your computer and use it in GitHub Desktop.
Save andreipfeiffer/0daf303ca8813a6535dc4cb64228905e to your computer and use it in GitHub Desktop.
Vue.component('Counter', {
// define the template in the component
// or reference a template defined in the DOM
template: `
<div>
<span>{{ nr }}</span>
<div>
`,
// internal state (aka. viewmodel)
data() {
return { nr: 0 };
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment