Update 404 page

This commit is contained in:
Thehrz 2023-02-19 10:32:51 +08:00
parent a06412434a
commit aeb64f6397

14
src/pages/[...all].vue Normal file
View File

@ -0,0 +1,14 @@
<script setup lang="ts">
const { t } = useI18n()
</script>
<template>
<div>
{{ t('not-found') }}
</div>
</template>
<route lang="yaml">
meta:
layout: 404
</route>