mirror of https://github.com/requarks/wiki
fix: page not found component (#990)
parent
a41ca694be
commit
7b2c35d2dc
@ -0,0 +1,24 @@
|
||||
<template lang='pug'>
|
||||
v-app
|
||||
.notfound
|
||||
.notfound-content
|
||||
img.animated.fadeIn(src='/svg/icon-delete-file.svg', alt='Not Found')
|
||||
.headline {{$t('notfound.title')}}
|
||||
.subheading.mt-3 {{$t('notfound.subtitle')}}
|
||||
v-btn.mt-5(color='red lighten-4', href='/', large, outlined)
|
||||
v-icon(left) mdi-home
|
||||
span {{$t('notfound.gohome')}}
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return { }
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang='scss'>
|
||||
|
||||
</style>
|
Loading…
Reference in new issue