diff --git a/src/assets/hat.mp4 b/src/assets/hat.mp4 new file mode 100644 index 0000000..8a0c6b6 Binary files /dev/null and b/src/assets/hat.mp4 differ diff --git a/src/router/index.js b/src/router/index.js index e128269..8492db9 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -63,6 +63,16 @@ const routes = [ return !authorized; } } + }, + { + path: '*', + name: 'NotFound', + component: () => import(/* webpackChunkName: "about" */ '../views/NotFound'), + meta: { + allowVisit() { + return true; + } + } } ] diff --git a/src/views/NotFound.vue b/src/views/NotFound.vue new file mode 100644 index 0000000..774c77c --- /dev/null +++ b/src/views/NotFound.vue @@ -0,0 +1,33 @@ + + + + + \ No newline at end of file