click.vue 252 B

1234567891011121314151617181920
  1. <template>
  2. <div @click="inc">
  3. <text>{{count}}</text>
  4. </div>
  5. </template>
  6. <script>
  7. module.exports = {
  8. data () {
  9. return {
  10. count: 42
  11. }
  12. },
  13. methods: {
  14. inc () {
  15. this.count++
  16. }
  17. }
  18. }
  19. </script>