App.vue 283 B

1234567891011121314151617181920
  1. <template>
  2. <div>
  3. <Count/>
  4. <hr>
  5. <hr>
  6. <hr>
  7. <hr>
  8. <Talk/>
  9. </div>
  10. </template>
  11. <script setup>
  12. import Count from './components/Count.vue'
  13. import Talk from './components/Talk.vue'
  14. import { ref, reactive} from 'vue'
  15. </script>
  16. <style lang='scss' scoped>
  17. </style>