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>
- [Vuejs]-Dynamically add a property to an object in an array
- [Vuejs]-Vue | Router navigate to another instance
Source:stackexchange.com