not-found.vue 297 B

1234567891011
  1. <script lang="ts" setup>
  2. import { Fallback } from '@vben/common-ui';
  3. import { useUserStore } from '@vben/stores';
  4. defineOptions({ name: 'Fallback404Demo' });
  5. const userStore = useUserStore();
  6. </script>
  7. <template>
  8. <Fallback status="404" :home-path="userStore.userInfo?.homePath" />
  9. </template>