mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
docs(TreeSelect): fix incorrect activeIds variable name (#12476)
Co-authored-by: iCheng <13384936284@136.com>
This commit is contained in:
parent
dac0349669
commit
e6f788172c
@ -79,7 +79,7 @@ import { ref } from 'vue';
|
||||
|
||||
export default {
|
||||
setup() {
|
||||
const activeId = ref([1, 2]);
|
||||
const activeIds = ref([1, 2]);
|
||||
const activeIndex = ref(0);
|
||||
const items = [
|
||||
{
|
||||
@ -103,7 +103,7 @@ export default {
|
||||
|
||||
return {
|
||||
items,
|
||||
activeId,
|
||||
activeIds,
|
||||
activeIndex,
|
||||
};
|
||||
},
|
||||
|
@ -83,7 +83,7 @@ import { ref } from 'vue';
|
||||
|
||||
export default {
|
||||
setup() {
|
||||
const activeId = ref([1, 2]);
|
||||
const activeIds = ref([1, 2]);
|
||||
const activeIndex = ref(0);
|
||||
const items = [
|
||||
{
|
||||
@ -107,7 +107,7 @@ export default {
|
||||
|
||||
return {
|
||||
items,
|
||||
activeId,
|
||||
activeIds,
|
||||
activeIndex,
|
||||
};
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user