test.vue 181 B

12345678910111213
  1. <script>
  2. export default {
  3. data() {
  4. return {
  5. count: 0
  6. }
  7. }
  8. }
  9. </script>
  10. <template>
  11. <button @click="count++">You clicked me {{ count }} times.</button>
  12. </template>