1234567891011121314151617 |
- <template>
- <i-e-index v-if="!isCultural"/>
- <voluntary-index v-else/>
- </template>
- <script setup>
- import IEIndex from './index/index.vue'
- import VoluntaryIndex from '@/pages/voluntary/index/index.vue'
- import {useUserStore} from "@/hooks/useUserStore";
- const {isCultural} = useUserStore()
- </script>
- <style scoped lang="scss">
- </style>
|