[Vuejs]-How to make vuetify select drop down working

0đź‘Ť

You need to pass “:items” instead of “items”. By omitting the : in front of a property you are passing the prop as simple string.

Since you want it to be handled as object, you need to use “:item”.

<v-select label="City" :items="items"></v-select>

Leave a comment