Skip to content

Commit 42e19f9

Browse files
Update Vue/src/components/DropDownList.vue
Co-authored-by: Mark Allen Ramirez <markallenramirez@gmail.com>
1 parent 61f52ad commit 42e19f9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Vue/src/components/DropDownList.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ const props = defineProps<{
3131
3232
const searchTimeoutValue = computed(() => props.searchTimeout ?? 1000);
3333
34-
const treeListRef = ref<InstanceType<typeof DxTreeList> | null>(null);
35-
const dropDownBoxRef = ref<InstanceType<typeof DxDropDownBox> | null>(null);
34+
const treeListRef = ref<DxTreeList | null>(null);
35+
const dropDownBoxRef = ref<DxDropDownBox | null>(null);
3636
3737
const value = ref<number | null>(props.selectedRowKey);
3838
const dropDownBoxOpened = ref(false);

0 commit comments

Comments
 (0)