Part3.vue 271 B

123456789101112131415161718192021
  1. <template>
  2. <div>
  3. <h1>Part3</h1>
  4. <hr>
  5. <Part2>
  6. 功能介绍
  7. </Part2>
  8. <hr>
  9. <hr>
  10. <hr>
  11. </div>
  12. </template>
  13. <script setup>
  14. import Part2 from './Part2.vue'
  15. import { ref, reactive} from 'vue'
  16. </script>
  17. <style lang='scss' scoped>
  18. </style>