Sink/app/error.vue
wudi 7cadbfe2b1 refactor: Migrate project files and directories to the app directory using the new compatibilityVersion: 4 feature
- Moved `app.config.ts` to the `app` directory
- Migrated `.vue` files and other assets to the `app` directory
- Updated import paths to reflect the new file locations
2025-03-24 11:05:59 +08:00

13 lines
301 B
Vue

<script setup>
import errorImage from './assets/images/404.svg?raw'
</script>
<template>
<NuxtLayout name="default">
<a
class="w-full h-full max-w-[600px] mx-auto flex items-center justify-center [&_svg]:w-full"
href="/"
v-html="errorImage"
/>
</NuxtLayout>
</template>