gaoshp
2024-06-03 6f1ac1da6b6cba5c74f2fb6be82f7e472c4116ee
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
30
31
32
33
34
35
36
37
<template>
    <el-main>
        <el-alert title="根据角色配置,可让不同角色访问不同的控制台视图,参数值在登录成功后返回 dashboard:{type}" type="success" style="margin-bottom:20px;"></el-alert>
        <el-row :gutter="15">
            <el-col :lg="24">
                <el-card shadow="never" header="我的常用">
                    <myapp></myapp>
                </el-card>
            </el-col>
        </el-row>
    </el-main>
</template>
 
<script>
    import myapp from './components/myapp';
 
    export default {
        components: {
            myapp
        },
        data() {
            return {
 
            }
        },
        mounted(){
            this.$emit('on-mounted')
        },
        methods: {
 
        }
    }
</script>
 
<style scoped>
 
</style>