Skip to content

Commit 82e545a

Browse files
authored
fix(VaSelectContent #4047): set input value on mount (#4060)
1 parent 6d6ac9a commit 82e545a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/ui/src/components/va-select/components/VaSelectContent/VaSelectContent.vue

+7-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
</template>
114114

115115
<script lang="ts">
116-
import { defineComponent, ref, toRefs, computed, watch, type PropType } from 'vue'
116+
import { defineComponent, ref, toRefs, computed, watch, onMounted, type PropType } from 'vue'
117117
118118
import { useFormFieldProps } from '../../../../composables'
119119
@@ -160,6 +160,12 @@ export default defineComponent({
160160
set: (v: string) => emit('autocomplete-input', v),
161161
})
162162
163+
onMounted(() => {
164+
if (props.multiple) { return }
165+
166+
autocompleteInputValueComputed.value = props.valueString as string
167+
})
168+
163169
watch(focused, (newValue) => {
164170
if (!props.autocomplete || !newValue) { return }
165171

0 commit comments

Comments
 (0)