Browse Source

Merge pull request #199 from Rousong/dev

Create a 404 page
pull/207/head
Ji Qu 4 years ago
committed by GitHub
parent
commit
373ab7ffac
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 59 additions and 0 deletions
  1. +6
    -0
      pinry-spa/src/router/index.js
  2. +53
    -0
      pinry-spa/src/views/PageNotFound.vue

+ 6
- 0
pinry-spa/src/router/index.js View File

@@ -8,6 +8,7 @@ import Pins4Id from '../views/Pins4Id.vue';
import Boards4User from '../views/Boards4User.vue';
import PinCreate from '../views/PinCreate.vue';
import Search from '../views/Search.vue';
import PageNotFound from '../views/PageNotFound.vue';

Vue.use(VueRouter);

@@ -52,6 +53,11 @@ const routes = [
name: 'search',
component: Search,
},
{
path: '*',
name: 'PageNotFound',
component: PageNotFound,
},
];

const router = new VueRouter({


+ 53
- 0
pinry-spa/src/views/PageNotFound.vue View File

@@ -0,0 +1,53 @@
<template>
<div>
<PHeader></PHeader>
<div id="main">
<div class="fof">
<p>Oops! Page Not Found</p>
<h1>Error 404</h1>
</div>
</div>
</div>
</template>

<script>
import PHeader from '../components/PHeader.vue';

export default {
name: 'PageNotFound',
components: {
PHeader,
},
};
</script>

<style scoped>
*{
transition: all 0.6s;
}
body{
font-family: 'Lato', sans-serif;
color: #888;
margin: 0;
}
#main{
display: table;
width: 100%;
height: 100vh;
text-align: center;
}
.fof{
display: table-cell;
vertical-align: middle;
}
.fof h1{
font-size: 50px;
display: inline-block;
padding-right: 12px;
animation: type .5s alternate infinite;
}
@keyframes type{
from{box-shadow: inset -3px 0px 0px #888;}
to{box-shadow: inset -3px 0px 0px transparent;}
}
</style>

Loading…
Cancel
Save