08335 / hivui-platform-template
hivui平台项目模板
Newer
Older
hivui-platform-template / project / hivuiLogin / views / middlePage.vue
<template>
    <div>
        <div>{{msg}}</div>
    </div>
</template>
<script>
export default {
    components: {
        
    },
    data(){
        return {
            msg:"这是中间页"
        }
    },
    mounted(){
        
    },
    methods: {
        
    },
};
</script>