diff --git a/src/components/common/VnSelect.vue b/src/components/common/VnSelect.vue index b78c99b8a..243f3ece1 100644 --- a/src/components/common/VnSelect.vue +++ b/src/components/common/VnSelect.vue @@ -294,7 +294,7 @@ async function onScroll({ to, direction, from, index }) { } } -defineExpose({ opts: myOptions }); +defineExpose({ opts: myOptions, vnSelectRef }); function handleKeyDown(event) { if (event.key === 'Tab' && !event.shiftKey) { @@ -346,7 +346,6 @@ function getCaption(opt) { :emit-value="nullishToTrue($attrs['emit-value'])" :map-options="nullishToTrue($attrs['map-options'])" :use-input="nullishToTrue($attrs['use-input'])" - :hide-selected="nullishToTrue($attrs['hide-selected'])" :fill-input="nullishToTrue($attrs['fill-input'])" ref="vnSelectRef" lazy-rules diff --git a/src/components/common/VnSelectDialog.vue b/src/components/common/VnSelectDialog.vue index 12322c3fa..a4cd0011d 100644 --- a/src/components/common/VnSelectDialog.vue +++ b/src/components/common/VnSelectDialog.vue @@ -1,5 +1,5 @@