We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61f52ad commit 42e19f9Copy full SHA for 42e19f9
1 file changed
Vue/src/components/DropDownList.vue
@@ -31,8 +31,8 @@ const props = defineProps<{
31
32
const searchTimeoutValue = computed(() => props.searchTimeout ?? 1000);
33
34
-const treeListRef = ref<InstanceType<typeof DxTreeList> | null>(null);
35
-const dropDownBoxRef = ref<InstanceType<typeof DxDropDownBox> | null>(null);
+const treeListRef = ref<DxTreeList | null>(null);
+const dropDownBoxRef = ref<DxDropDownBox | null>(null);
36
37
const value = ref<number | null>(props.selectedRowKey);
38
const dropDownBoxOpened = ref(false);
0 commit comments