diff options
| author | Pitu <[email protected]> | 2018-09-18 04:02:21 -0300 |
|---|---|---|
| committer | Pitu <[email protected]> | 2018-09-18 04:02:21 -0300 |
| commit | 108e5d5d2f788944f70f3e77fb9b21d9d23b5de3 (patch) | |
| tree | 6e645705056f321ac2f97dc99e2e20c9658e806b /src/site | |
| parent | Unused lines (diff) | |
| download | host.fuwn.me-108e5d5d2f788944f70f3e77fb9b21d9d23b5de3.tar.xz host.fuwn.me-108e5d5d2f788944f70f3e77fb9b21d9d23b5de3.zip | |
404エラ
Diffstat (limited to 'src/site')
| -rw-r--r-- | src/site/router/index.js | 5 | ||||
| -rw-r--r-- | src/site/views/NotFound.vue | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/site/router/index.js b/src/site/router/index.js index 7b9b051..79053b9 100644 --- a/src/site/router/index.js +++ b/src/site/router/index.js @@ -12,8 +12,9 @@ const router = new Router({ { path: '/dashboard', component: () => import('../views/Dashboard/Uploads.vue') }, { path: '/dashboard/albums', component: () => import('../views/Dashboard/Albums.vue') }, { path: '/dashboard/settings', component: () => import('../views/Dashboard/Settings.vue') }, - { path: '/a/:identifier', component: () => import('../views/PublicAlbum.vue'), props: true } - // { path: '*', component: () => import('../views/NotFound.vue') } + { path: '/a/:identifier', component: () => import('../views/PublicAlbum.vue'), props: true }, + { path: '/404', component: () => import('../views/NotFound.vue') }, + { path: '*', component: () => import('../views/NotFound.vue') } ] }); diff --git a/src/site/views/NotFound.vue b/src/site/views/NotFound.vue index 17d07d2..6f4d7c9 100644 --- a/src/site/views/NotFound.vue +++ b/src/site/views/NotFound.vue @@ -10,10 +10,10 @@ <template> <section class="hero is-fullheight"> - <Navbar/> + <Navbar :isWhite="true"/> <div class="hero-body"> <div class="container"> - <h2>404</h2> + <h2>404エラ</h2> </div> </div> </section> |