404.vue
根
/
temp /
site-m /
src /
page /
404.vue
<style scoped>
.page-404 {
text-align: center; padding: 50px 20px 0 20px;color: #999;
}
</style>
<template>
<div class="page-404">
<div style="font-size:68px;">404</div>
<div style="font-size:18px;margin-top:20px;">糟糕,你的页面走丢了!</div>
</div>
</template>
<script>
import { mapGetters } from 'vuex';
export default {
mixins: [],
components: {},
props: [],
data: function () {
return {};
},
methods: {
async init() {}
},
watch: {},
created() {
this.init();
},
mounted() {},
//计算属性
computed: {
...mapGetters(['vx_userInfo'])
}
};
</script>