Client - minor refactor

This commit is contained in:
Sam
2021-09-23 16:45:57 +02:00
parent 0cb4fae21e
commit e7fd6860d3
4 changed files with 37 additions and 10 deletions

View File

@ -0,0 +1,23 @@
<template>
<div class="not-found">
<NotFound />
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue'
import { useI18n } from 'vue-i18n'
import NotFound from '@/components/Common/NotFound.vue'
export default defineComponent({
name: 'NotFoundView',
components: {
NotFound,
},
setup() {
const { t } = useI18n()
return { t }
},
})
</script>