mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
50 lines
813 B
Markdown
50 lines
813 B
Markdown
# 异步多项(仅叶子节点)
|
|
```html
|
|
<n-cascader
|
|
v-model="value"
|
|
multiple
|
|
placeholder="请选些什么"
|
|
:options="options"
|
|
style="flex-grow: 1; margin-right: 12px;"
|
|
remote
|
|
:on-load="handleLoad"
|
|
/>
|
|
```
|
|
```js
|
|
function genChildren (option) {
|
|
const children = []
|
|
for (let i = 0; i <= option.depth; ++i) {
|
|
children.push({
|
|
label: option.label + '_' + i,
|
|
value: option.label + '_' + i,
|
|
isLeaf: option.depth === 3
|
|
})
|
|
}
|
|
return children
|
|
}
|
|
|
|
const options = [
|
|
{
|
|
label: 'Root',
|
|
value: 'root',
|
|
isLeaf: false
|
|
}
|
|
]
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
value: null,
|
|
options: options
|
|
}
|
|
},
|
|
methods: {
|
|
handleLoad (option, resolve) {
|
|
window.setTimeout(() => {
|
|
resolve(genChildren(option))
|
|
}, 1000)
|
|
}
|
|
}
|
|
}
|
|
```
|