not-found.vue 176 B

123456789
  1. <script lang="ts" setup>
  2. import { Fallback } from '@vben/common-ui';
  3. defineOptions({ name: 'Fallback404Demo' });
  4. </script>
  5. <template>
  6. <Fallback status="404" />
  7. </template>