mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
830 B
830 B
操作插槽
有人要在选择菜单里用这个插槽吗?
<n-select
v-model:value="value"
:options="options"
>
<template v-slot:action>
如果你点开了这个例子,你可能需要它
</template>
</n-select>
export default {
data () {
return {
value: null,
options: [
{
label: "Everybody's Got Something to Hide Except Me and My Monkey",
value: 'song0',
disabled: true
},
{
label: 'Drive My Car',
value: 'song1'
},
{
label: 'Norwegian Wood',
value: 'song2'
},
{
label: 'You Won\'t See',
value: 'song3',
disabled: true
}
]
}
}
}
.n-select {
width: 180px;
margin: 0 12px 8px 0;
}