I am currently working with the v-autocomplete component and finding it somewhat rigid in terms of customization. I am hoping someone can provide some insight on this issue.
Is there a way to have a default display text value in the input when the page first loads for v-autocomplete? For example:
If I have a value in my items[] array, or any other data() value, is it possible to have one of those items show by default (as display text) when the page loads? Can this be achieved within the mounted() lifecycle hook? I have attempted to bind a value to the v-model but it only sets the value itself, leaving the display text empty.
You can find more information at: vuetifyjs.com/ru/components/autocompletes#asynchronous-items
In the example mentioned above, the states[] array contains multiple values. Is there a way to set one of them as the default selection upon mount/render?
As someone transitioning from React, please excuse my lack of experience! I am still in the process of getting acquainted with Vue and Vuetify.
Any assistance would be greatly appreciated. Thank you!