mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-03-31 14:20:53 +08:00
docs(cascader): fix lazy demo data not cleared after unmount
This commit is contained in:
parent
734ee1ffc5
commit
3185a76fd7
@ -35,14 +35,6 @@ function genChildren (option) {
|
||||
return children
|
||||
}
|
||||
|
||||
const options = [
|
||||
{
|
||||
label: 'l-0',
|
||||
value: 'v-0',
|
||||
depth: 1,
|
||||
isLeaf: false
|
||||
}
|
||||
]
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
@ -50,7 +42,14 @@ export default {
|
||||
cascade: true,
|
||||
showPath: true,
|
||||
value: null,
|
||||
options: options
|
||||
options: [
|
||||
{
|
||||
label: 'l-0',
|
||||
value: 'v-0',
|
||||
depth: 1,
|
||||
isLeaf: false
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
@ -34,15 +34,6 @@ function genChildren (option) {
|
||||
return children
|
||||
}
|
||||
|
||||
const options = [
|
||||
{
|
||||
label: 'l-0',
|
||||
value: 'v-0',
|
||||
depth: 1,
|
||||
isLeaf: false
|
||||
}
|
||||
]
|
||||
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
@ -50,7 +41,14 @@ export default {
|
||||
cascade: true,
|
||||
showPath: true,
|
||||
value: null,
|
||||
options: options
|
||||
options: [
|
||||
{
|
||||
label: 'l-0',
|
||||
value: 'v-0',
|
||||
depth: 1,
|
||||
isLeaf: false
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
@ -35,14 +35,6 @@ function genChildren (option) {
|
||||
return children
|
||||
}
|
||||
|
||||
const options = [
|
||||
{
|
||||
label: 'l-0',
|
||||
value: 'v-0',
|
||||
depth: 1,
|
||||
isLeaf: false
|
||||
}
|
||||
]
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
@ -50,7 +42,14 @@ export default {
|
||||
cascade: true,
|
||||
showPath: true,
|
||||
value: null,
|
||||
options: options
|
||||
options: [
|
||||
{
|
||||
label: 'l-0',
|
||||
value: 'v-0',
|
||||
depth: 1,
|
||||
isLeaf: false
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
@ -8,6 +8,7 @@
|
||||
<n-space><n-switch v-model:value="showPath" />Show Path</n-space>
|
||||
</n-space>
|
||||
<n-cascader
|
||||
show
|
||||
v-model:value="value"
|
||||
placeholder="没啥用的值"
|
||||
:options="options"
|
||||
@ -34,23 +35,21 @@ function genChildren (option) {
|
||||
return children
|
||||
}
|
||||
|
||||
const options = [
|
||||
{
|
||||
label: 'l-0',
|
||||
value: 'v-0',
|
||||
depth: 1,
|
||||
isLeaf: false
|
||||
}
|
||||
]
|
||||
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
options: [
|
||||
{
|
||||
label: 'l-0',
|
||||
value: 'v-0',
|
||||
depth: 1,
|
||||
isLeaf: false
|
||||
}
|
||||
],
|
||||
leafOnly: true,
|
||||
cascade: true,
|
||||
showPath: true,
|
||||
value: null,
|
||||
options: options
|
||||
value: null
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user