mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
1.3 KiB
1.3 KiB
基础用法
<n-popselect
v-model:value="value"
:options="options"
>
<n-tag>{{ value || '弹出选择' }}</n-tag>
</n-popselect>
export default {
data () {
return {
value: 'Drive My Car',
options: [
{
label: 'Drive My Car',
value: 'Drive My Car'
},
{
label: 'Norwegian Wood',
value: 'Norwegian Wood'
},
{
label: 'You Won\'t See',
value: 'You Won\'t See',
disabled: true
},
{
label: 'Nowhere Man',
value: 'Nowhere Man'
},
{
label: 'Think For Yourself',
value: 'Think For Yourself'
},
{
label: 'The Word',
value: 'The Word'
},
{
label: 'Michelle',
value: 'Michelle',
disabled: true
},
{
label: 'What goes on',
value: 'What goes on'
},
{
label: 'Girl',
value: 'Girl'
},
{
label: 'I\'m looking through you',
value: 'I\'m looking through you'
},
{
label: 'In My Life',
value: 'In My Life'
},
{
label: 'Wait',
value: 'Wait'
}
]
}
}
}