Skip to main content
V-Select

[Solved] Vuetify V-Select Not Showing Placeholder/Label

By January 9, 2022July 7th, 2022No Comments

The problem: V-select was not showing the placeholder.

The solution is easy but nearly impossible to know at first.

1
<v-select v-model="topic" :items="topicForJS" label="Select Topic" outlined="" persistent-placeholder="" placeholder="Select Topic" :error-messages="topicErrors"></v-select>

The

1
persistent-placeholder
in combination with the
1
placeholder
does the trick.

V-select now displaying the placeholder text.

Perhaps this applies on v-autocomplete as well?