123456789101112131415161718192021222324 |
- <template>
- <div class="white-bgc">
- <navBar @click="handleClickNav"></navBar>
- <Content></Content>
- </div>
- </template>
- <script setup>
- defineOptions({ name: 'headhuntingService' })
- import navBar from './components/nav.vue'
- import Content from './components/serviceContent.vue'
- import { useRouter } from 'vue-router'
- const router = useRouter()
- const handleClickNav = (path) => {
- if (!path) return
- router.push(path)
- }
- </script>
- <style scoped lang="scss">
- </style>
|