12345678910111213141516171819202122232425 |
- <template>
- <div>
- <headCarousel></headCarousel>
- <headSearch></headSearch>
- <hotJobs></hotJobs>
- <jobTypeCard></jobTypeCard>
- <div class="default-width mt-3">
- <hotPromotedPositions></hotPromotedPositions>
- <PopularEnterprises class="mt-10"></PopularEnterprises>
- </div>
- </div>
- </template>
- <script setup>
- import headCarousel from './components/headCarousel.vue'
- import headSearch from './components/search.vue'
- import hotJobs from './components/hotJobs.vue'
- import jobTypeCard from './components/jobTypeCard.vue'
- import hotPromotedPositions from './components/hotPromotedPositions.vue'
- import PopularEnterprises from './components/popularEnterprises.vue'
- defineOptions({ name:'personal-index'})
- </script>
- <style lang="scss" scoped>
- </style>
|