You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
601 B
29 lines
601 B
<template functional>
|
|
<a-sub-menu
|
|
:key="props.menuInfo.key"
|
|
>
|
|
<span slot="title">
|
|
<a-icon type="mail" /><span>{{ props.menuInfo.title }}</span>
|
|
</span>
|
|
<template v-for="item in props.menuInfo.children">
|
|
<a-menu-item
|
|
v-if="!item.children"
|
|
:key="item.key"
|
|
>
|
|
<a-icon type="pie-chart" />
|
|
<span>{{ item.title }}</span>
|
|
</a-menu-item>
|
|
<sub-menu
|
|
v-else
|
|
:key="item.key"
|
|
:menu-info="item"
|
|
/>
|
|
</template>
|
|
</a-sub-menu>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: ['menuInfo'],
|
|
};
|
|
</script>
|