Add 404 page
This commit is contained in:
parent
c458f902da
commit
a4acfb5ef2
2 changed files with 18 additions and 0 deletions
12
src/components/404.vue
Normal file
12
src/components/404.vue
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<template>
|
||||
<div class="content has-text-centered">
|
||||
<h1>Not found</h1>
|
||||
<p>The page you requested does not exist.</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: '404'
|
||||
}
|
||||
</script>
|
||||
Reference in a new issue