diff --git a/apps/showcase/doc/treeselect/FilterDoc.vue b/apps/showcase/doc/treeselect/FilterDoc.vue
index 38faef2a2..27d6bdf8b 100644
--- a/apps/showcase/doc/treeselect/FilterDoc.vue
+++ b/apps/showcase/doc/treeselect/FilterDoc.vue
@@ -8,7 +8,7 @@
-
+
@@ -21,6 +21,7 @@ export default {
return {
nodes: null,
selectedValue: null,
+ selectedValue2: null,
code: {
basic: `
@@ -42,6 +43,7 @@ export default {
return {
nodes: null,
selectedValue: null,
+ selectedValue2: null,
}
},
mounted() {
@@ -64,6 +66,7 @@ import { NodeService } from './service/NodeService';
const nodes = ref(null);
const selectedValue = ref(null);
+const selectedValue2 = ref(null);
onMounted(() => {
NodeService.getTreeNodes().then((data) => (nodes.value = data));