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
Single (Async)
<n-space vertical>
<n-space>
<n-space><n-switch v-model:value="leafOnly" />Leaf Only</n-space>
<n-space><n-switch v-model:value="cascade" />Cascade</n-space>
<n-space><n-switch v-model:value="showPath" />Show Path</n-space>
</n-space>
<n-cascader
v-model:value="value"
placeholder="Meaningless values"
:options="options"
:cascade="cascade"
:leaf-only="leafOnly"
:show-path="showPath"
remote
:on-load="handleLoad"
/>
</n-space>
function genChildren (option) {
const children = []
for (let i = 0; i <= option.depth; ++i) {
children.push({
label: option.label + '-' + i,
value: option.label + '-' + i,
depth: option.depth + 1,
isLeaf: option.depth === 3
})
}
return children
}
export default {
data () {
return {
leafOnly: true,
cascade: true,
showPath: true,
value: null,
options: [
{
label: 'l-0',
value: 'v-0',
depth: 1,
isLeaf: false
}
]
}
},
methods: {
handleLoad (option) {
return new Promise((resolve) => {
window.setTimeout(() => {
option.children = genChildren(option)
resolve()
}, 1000)
})
}
}
}