| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 2x | <template>
<div class="notfound">
<h1><strong>404</strong> 啊哈页面不见了</h1>
</div>
</template>
<script>
export default {
name: 'notFound',
data () {
return {}
}
}
</script>
<style lang="scss" scoped>
.notfound {
flex: 1 1 auto;
display: flex;
justify-content: center;
align-items: center;
}
h1 {
font-size: 40px;
color: #d7d7d7;
font-weight: lighter;
}
</style>
|