summaryrefslogtreecommitdiff
path: root/src/views/_ibs/PageNotFound
diff options
context:
space:
mode:
authorAndrey V.Kosteltsev <AKosteltsev@IBS.RU>2022-07-04 23:11:28 +0300
committerAndrey V.Kosteltsev <AKosteltsev@IBS.RU>2022-07-04 23:11:28 +0300
commit3f4094d08b873e17464a51c817ea7d41177f848d (patch)
tree8880a0e7c8c0ac07ed298ce719cfab3278f2aa12 /src/views/_ibs/PageNotFound
parentf5c8dbfa6fb3812a3b3a2aafd3538fbdf8b8c668 (diff)
downloadwebui-vue-3f4094d08b873e17464a51c817ea7d41177f848d.tar.xz
IBS: _ibs UI Theme
Diffstat (limited to 'src/views/_ibs/PageNotFound')
-rw-r--r--src/views/_ibs/PageNotFound/PageNotFound.vue12
-rw-r--r--src/views/_ibs/PageNotFound/index.js2
2 files changed, 14 insertions, 0 deletions
diff --git a/src/views/_ibs/PageNotFound/PageNotFound.vue b/src/views/_ibs/PageNotFound/PageNotFound.vue
new file mode 100644
index 00000000..91341dbb
--- /dev/null
+++ b/src/views/_ibs/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>
diff --git a/src/views/_ibs/PageNotFound/index.js b/src/views/_ibs/PageNotFound/index.js
new file mode 100644
index 00000000..ed1d519a
--- /dev/null
+++ b/src/views/_ibs/PageNotFound/index.js
@@ -0,0 +1,2 @@
+import PageNotFound from './PageNotFound.vue';
+export default PageNotFound;