HomeContent.vue 338 B

123456789101112131415161718
  1. <script setup lang="ts">
  2. import { ref } from "vue";
  3. const count = ref(0);
  4. </script>
  5. <template>
  6. <div class="home-content">
  7. <span>{{ count }}</span>
  8. <button @click="count++">test</button>
  9. </div>
  10. </template>
  11. <style lang="scss" scoped>
  12. .home-content {
  13. display: flex;
  14. flex-direction: column;
  15. align-items: center;
  16. }
  17. </style>