index.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>功能模块示例</div>
    </div>
</template>
<script type="text/javascript">
// import '../static/style/style.less';
import { Vuex } from 'dai-vue';
export default {
    props: {},
    data() {
        return {};
    },
    components: {},
    methods: {},
    watch: {},
    created() {},
    mounted() {},
    //计算属性
    computed: {
        ...Vuex.mapGetters(['vx_userInfo'])
    },
    destroyed() {}
};
</script>