vitesse/src/pages/[...all].vue
John Campion Jr 83225032d0
feat: support layouts (#56)
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
2021-02-12 12:55:19 +08:00

17 lines
211 B
Vue
Executable File

<script setup lang="ts">
import { useI18n } from 'vue-i18n'
const { t } = useI18n()
</script>
<template>
<div>
{{ t('not-found') }}
</div>
</template>
<route lang="yaml">
meta:
layout: 404
</route>