mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-06 03:58:00 +08:00
35 lines
651 B
Vue
35 lines
651 B
Vue
<template>
|
|
<a-sub-menu :key="item.fullPath">
|
|
<template v-slot:title>
|
|
<span class="anticon">
|
|
<vab-icon :icon="item.meta.icon"></vab-icon>
|
|
</span>
|
|
<span>{{ item.meta.title }}</span>
|
|
</template>
|
|
<slot></slot>
|
|
</a-sub-menu>
|
|
</template>
|
|
|
|
<script>
|
|
import VabIcon from '@/layout/vab-icon'
|
|
export default {
|
|
name: 'Submenu',
|
|
components: { VabIcon },
|
|
props: {
|
|
item: {
|
|
type: Object,
|
|
default() {
|
|
return null
|
|
},
|
|
},
|
|
routeChildren: {
|
|
type: Object,
|
|
default() {
|
|
return null
|
|
},
|
|
},
|
|
},
|
|
methods: {},
|
|
}
|
|
</script>
|