Files
jinshen-website/app/pages/[...all].vue
R2m1liA 359aaec8a9 style: 格式化项目代码
- 根据prettier配置格式化整个项目的代码
2025-09-17 15:50:29 +08:00

18 lines
383 B
Vue

<template>
<main p="x4 y10" text="center teal-700 dark:gray-200">
<div text4xl>
<div i-ep-warning inline-block />
</div>
<div>{{ $t('not-found') }}</div>
<div>
<button text-sm btn m="3 t8" @click="router.back()">
{{ $t('back') }}
</button>
</div>
</main>
</template>
<script setup lang="ts">
const router = useRouter();
</script>