1234567891011121314151617181920 |
- <template>
- <div>
- <Count/>
- <hr>
- <hr>
- <hr>
- <hr>
- <Talk/>
- </div>
- </template>
- <script setup>
- import Count from './components/Count.vue'
- import Talk from './components/Talk.vue'
- import { ref, reactive} from 'vue'
- </script>
- <style lang='scss' scoped>
- </style>
|