summaryrefslogtreecommitdiff
path: root/src/views/PageNotFound/PageNotFound.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/PageNotFound/PageNotFound.vue')
-rw-r--r--src/views/PageNotFound/PageNotFound.vue12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/views/PageNotFound/PageNotFound.vue b/src/views/PageNotFound/PageNotFound.vue
new file mode 100644
index 00000000..be4b3c49
--- /dev/null
+++ b/src/views/PageNotFound/PageNotFound.vue
@@ -0,0 +1,12 @@
+<template>
+ <b-container fluid="xl">
+ <page-title :description="$t('pagePageNotFound.description')" />
+ </b-container>
+</template>
+<script>
+import PageTitle from '@/components/Global/PageTitle';
+export default {
+ name: 'PageNotFound',
+ components: { PageTitle }
+};
+</script>