Guest User

Untitled

a guest
Mar 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <template lang="html">
  2. <div>
  3. <div>{{ count }}</div>
  4. <button @click="add()">Increment</button>
  5. </div>
  6. </template>
  7.  
  8. <script>
  9. export default {
  10. data () {
  11. return {
  12. count: 0
  13. }
  14. },
  15. methods: {
  16. add () {
  17. this.count += 1;
  18. }
  19. }
  20. }
  21. </script>
Add Comment
Please, Sign In to add comment