home.vue
根
/
temp /
site-w /
src /
page /
home.vue
<style lang="less" scoped>
</style>
<template>
<div style="text-align: center;">
<div><img style="width:200px;" src="../static/image/vue-logo.png" /></div>
<div style="font-size:28px;">DaiVUE</div>
<div>简易VUE网站快速成型框架</div>
</div>
</template>
<script type="text/javascript">
import { Vuex } from 'dai-vue';
export default {
props: {},
data() {
return {};
},
components: {},
methods: {},
watch: {},
created() {},
mounted() {},
//计算属性
computed: {
...Vuex.mapGetters(['vx_userInfo'])
},
destroyed() {}
};
</script>