FitTrackee/fittrackee_client/src/views/NotFoundView.vue

24 lines
419 B
Vue
Raw Normal View History

2021-08-07 14:28:48 +02:00
<template>
<div class="not-found">
2021-09-23 16:45:57 +02:00
<NotFound />
2021-08-07 14:28:48 +02:00
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue'
import { useI18n } from 'vue-i18n'
2021-08-11 22:21:26 +02:00
2021-09-23 16:45:57 +02:00
import NotFound from '@/components/Common/NotFound.vue'
2021-08-07 14:28:48 +02:00
export default defineComponent({
2021-09-23 16:45:57 +02:00
name: 'NotFoundView',
2021-08-07 14:28:48 +02:00
components: {
2021-09-23 16:45:57 +02:00
NotFound,
2021-08-07 14:28:48 +02:00
},
setup() {
const { t } = useI18n()
return { t }
},
})
</script>