App.vue 188 B

123456789101112131415
  1. <script setup>
  2. import { ref } from 'vue'
  3. const count = ref(0)
  4. </script>
  5. <template>
  6. <button @click="count++">{{ count }}</button>
  7. </template>
  8. <style>
  9. button {
  10. color: red;
  11. }
  12. </style>