portal.vue 345 B

1234567891011121314151617
  1. <template>
  2. <i-e-index v-if="!isCultural"/>
  3. <voluntary-index v-else/>
  4. </template>
  5. <script setup>
  6. import IEIndex from './index/index.vue'
  7. import VoluntaryIndex from '@/pages/voluntary/index/index.vue'
  8. import {useUserStore} from "@/hooks/useUserStore";
  9. const {isCultural} = useUserStore()
  10. </script>
  11. <style scoped lang="scss">
  12. </style>