mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
482 B
482 B
Lots of Options
1000 times of the ultimate answer.
<n-select
v-model:value="value"
:options="options"
/>
<n-select
multiple
v-model:value="values"
:options="options"
/>
export default {
data () {
return {
value: null,
values: null,
options: Array.apply(null, { length: 42000 }).map((_, i) => ({
label: String(i),
value: i
}))
}
}
}
.n-select {
width: 180px;
margin: 0 12px 8px 0;
}