Skip to content

Instantly share code, notes, and snippets.

@tdondich
Created May 13, 2019 02:45
Show Gist options
  • Save tdondich/720b287914bbec552e2418ea6cf0abb3 to your computer and use it in GitHub Desktop.
Save tdondich/720b287914bbec552e2418ea6cf0abb3 to your computer and use it in GitHub Desktop.
let app = new Vue({
el: '#counterApp',
data() {
return {
counter: 0
}
},
methods: {
increment() {
this.counter++;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment