index.vue 248 B

12345678910111213
  1. <template>
  2. <div class="parent">
  3. <headCarousel></headCarousel>
  4. </div>
  5. </template>
  6. <script setup>
  7. import headCarousel from './components/headCarousel.vue'
  8. defineOptions({ name:'personal-index'})
  9. </script>
  10. <style lang="scss" scoped>
  11. </style>