Guest User

Untitled

a guest
Mar 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. Vue.component('my-counter', {
  2. data () {
  3. return {
  4. count: 0
  5. }
  6. },
  7. methods: {
  8. add () {
  9. this.count += 1;
  10. }
  11. },
  12. template: `<div>
  13. <div>{{ count }}</div>
  14. <button @click="add()">Increment</button>
  15. </div>`
  16. }
  17. });
Add Comment
Please, Sign In to add comment