TOPVERSE_Official/pages/[...all].vue

16 lines
299 B
Vue
Raw Permalink Normal View History

2023-04-23 14:19:03 +08:00
<script setup lang="ts">
const router = useRouter()
</script>
<template>
2023-05-31 11:02:15 +08:00
<main p="x4 y-50" text="center teal-700 dark:gray-200">
2023-04-23 14:19:03 +08:00
<div text-4xl>
<div i-carbon-warning inline-block />
</div>
2023-06-01 18:10:04 +08:00
<h2 p-12 text-4xl uppercase>
{{ $t('notfound') }}
2023-05-31 11:02:15 +08:00
</h2>
2023-04-23 14:19:03 +08:00
</main>
</template>