123456789101112131415161718192021 |
- <template>
- <div>
- <h1>Part3</h1>
- <hr>
- <Part2>
- 功能介绍
- </Part2>
- <hr>
- <hr>
- <hr>
- </div>
- </template>
- <script setup>
- import Part2 from './Part2.vue'
- import { ref, reactive} from 'vue'
- </script>
- <style lang='scss' scoped>
- </style>
|