App.vue 231 B

123456789101112131415
  1. <template>
  2. <div>
  3. <h1>首页</h1>
  4. <Count></Count>
  5. </div>
  6. </template>
  7. <script lang="ts" setup>
  8. import Count from './components/Count.vue'
  9. import {ref,reactive} from "vue"
  10. </script>
  11. <style lang="scss" scoped>
  12. </style>