mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
2.6 KiB
2.6 KiB
展开子菜单
你可以设定 default-expanded-names
让菜单工作在非受控状态下或者使用 expanded-names
和 @expanded-names-change
以受控的方式控制菜单。
<n-menu
v-model="activeName"
:default-expanded-names="defaultExpandedNames"
@expanded-names-change="handleExpandedNamesChange"
@select="handleSelect"
>
<n-menu-item title="且听风吟" name="hear-the-wind-sing">
<template v-slot:icon>
<n-icon>
<book-icon />
</n-icon>
</template>
</n-menu-item>
<n-submenu title="1973年的弹珠玩具" name="pinball-1973" disabled>
<template v-slot:icon>
<n-icon>
<book-icon />
</n-icon>
</template>
<n-menu-item title="鼠" name="rat" />
</n-submenu>
<n-menu-item title="寻羊冒险记" name="a-wild-sheep-chase" disabled>
<template v-slot:icon>
<n-icon>
<book-icon />
</n-icon>
</template>
</n-menu-item>
<n-submenu title="舞,舞,舞" name="dance-dance-dance">
<template v-slot:icon>
<n-icon>
<book-icon />
</n-icon>
</template>
<n-menu-item-group title="人物">
<n-menu-item title="叙事者" name="narrator">
<template v-slot:icon>
<n-icon>
<person-icon />
</n-icon>
</template>
</n-menu-item>
<n-menu-item title="羊男" name="sheep-man">
<template v-slot:icon>
<n-icon>
<person-icon />
</n-icon>
</template>
</n-menu-item>
</n-menu-item-group>
<n-submenu title="饮品" name="beverage">
<template v-slot:icon>
<n-icon>
<wine-icon />
</n-icon>
</template>
<n-menu-item title="威士忌" name="whisky" />
</n-submenu>
<n-submenu title="食物" name="food">
<n-menu-item title="三明治" name="sandwich" />
</n-submenu>
<n-menu-item title="过去增多,未来减少" name="the-past-increases-the-future-recedes" />
</n-submenu>
</n-menu>
import bookIcon from 'naive-ui/lib/icons/book-outline'
import personIcon from 'naive-ui/lib/icons/person-outline'
import wineIcon from 'naive-ui/lib/icons/wine-outline'
export default {
components: {
bookIcon,
personIcon,
wineIcon
},
data () {
return {
defaultExpandedNames: ['dance-dance-dance', 'food'],
activeName: null
}
},
methods: {
handleSelect (value) {
this.$NMessage.info('Select: ' + JSON.stringify(value))
},
handleExpandedNamesChange (value) {
this.$NMessage.info('ExpandedNamesChange: ' + JSON.stringify(value))
}
}
}