2
0

App-root.vue 220 B

123456789101112131415
  1. <script setup lang="ts">
  2. import { ref } from 'vue/vapor'
  3. const count = ref(1)
  4. const handleClick = () => {
  5. count.value++
  6. }
  7. </script>
  8. <template>
  9. <button @click="handleClick">
  10. {{ count }}
  11. </button>
  12. </template>