mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
813 B
813 B
Action Slot
Is there anybody needs action slot on select menu?
<n-select
v-model="value"
:options="options"
>
<template v-slot:action>
If you open this demo, you may need it.
</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;
}