马宇豪
2023-08-07 7ed4982b8f2a345bfad95a96070143c32142bc61
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
38
39
40
41
42
43
44
45
46
47
48
<template>
    <template v-for="val in chils">
        <el-sub-menu :index="val.path" :key="val.path" v-if="val.children && val.children.length > 0">
            <template #title>
                <SvgIcon :name="val.meta.icon" />
                <span>{{ $t(val.meta.title) }}</span>
            </template>
            <sub-item :chil="val.children" />
        </el-sub-menu>
        <template v-else>
            <el-menu-item :index="val.path" :key="val.path">
                <template v-if="!val.meta.isLink || (val.meta.isLink && val.meta.isIframe)">
                    <SvgIcon :name="val.meta.icon" />
                    <span>{{ $t(val.meta.title) }}</span>
                </template>
                <template v-else>
                    <a :href="val.meta.isLink" target="_blank" rel="opener" class="w100">
                        <SvgIcon :name="val.meta.icon" />
                        {{ $t(val.meta.title) }}
                    </a>
                </template>
            </el-menu-item>
        </template>
    </template>
</template>
 
<script lang="ts">
import { computed, defineComponent } from 'vue';
 
export default defineComponent({
    name: 'navMenuSubItem',
    props: {
        chil: {
            type: Array,
            default: () => [],
        },
    },
    setup(props) {
        // 获取父级菜单数据
        const chils = computed(() => {
            return <any>props.chil;
        });
        return {
            chils,
        };
    },
});
</script>