index.vue 774 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div>
  3. <headCarousel></headCarousel>
  4. <headSearch></headSearch>
  5. <hotJobs></hotJobs>
  6. <jobTypeCard></jobTypeCard>
  7. <div class="default-width mt-3">
  8. <hotPromotedPositions></hotPromotedPositions>
  9. <PopularEnterprises class="mt-10"></PopularEnterprises>
  10. </div>
  11. </div>
  12. </template>
  13. <script setup>
  14. import headCarousel from './components/headCarousel.vue'
  15. import headSearch from './components/search.vue'
  16. import hotJobs from './components/hotJobs.vue'
  17. import jobTypeCard from './components/jobTypeCard.vue'
  18. import hotPromotedPositions from './components/hotPromotedPositions.vue'
  19. import PopularEnterprises from './components/popularEnterprises.vue'
  20. defineOptions({ name:'personal-index'})
  21. </script>
  22. <style lang="scss" scoped>
  23. </style>