Browse Source

404エラ

Pitu 6 years ago
parent
commit
108e5d5d2f
2 changed files with 5 additions and 4 deletions
  1. 3 2
      src/site/router/index.js
  2. 2 2
      src/site/views/NotFound.vue

+ 3 - 2
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') }
 	]
 });
 

+ 2 - 2
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>