1234567891011121314151617181920 |
- <template>
- <div>
- <navBar @click="handleClickNav"></navBar>
- <Content></Content>
- </div>
- </template>
- <script setup>
- defineOptions({ name: 'headhuntingIndex' })
- import navBar from './components/nav.vue'
- import Content from './components/content.vue'
- const handleClickNav = (path) => {
- console.log(path, 'nav-click')
- }
- </script>
- <style scoped lang="scss">
- </style>
|