V-Select – A Weblog of Priyank Maniar https://priyank.rocks Articles on web development & mobile app development Thu, 07 Jul 2022 08:45:30 +0000 en-US hourly 1 https://wordpress.org/?v=6.6.2 [Solved] Vuetify V-Select Not Showing Placeholder/Label https://priyank.rocks/vuetify-v-select-not-showing-placeholder-label/ Sun, 09 Jan 2022 11:48:56 +0000 https://priyank.rocks/?p=8826 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?

]]>