mjz update

This commit is contained in:
mjz
2023-05-28 18:15:33 +08:00
parent 9b75e60571
commit ed6e2d81fb
243 changed files with 11730 additions and 6 deletions

35
vdoing/layouts/404.vue Normal file
View File

@@ -0,0 +1,35 @@
<template>
<div class="theme-container">
<div class="theme-vdoing-content">
<span>404</span>
<blockquote>{{ getMsg() }}</blockquote>
<router-link to="/">返回首页</router-link>
</div>
</div>
</template>
<script>
const msgs = [
`这里什么都没有。`,
`我是谁?我在哪?`,
`这是一个Four-Oh-Four.`,
`看来我们的链接坏掉了~`
]
export default {
methods: {
getMsg () {
return msgs[Math.floor(Math.random() * msgs.length)]
}
}
}
</script>
<style lang="stylus" scoped>
.theme-vdoing-content
margin 3rem auto
padding 1.5rem
span
font-size 6rem
color $accentColor
</style>