I have two completely unrelated tables and I want to get the options (dropdown items) from table 1 and then post the option to table 2. This is pretty easy since I can use: items to get items from table 1, however, I'm using the v-model to bind the data to table 2 so I can't use it to display a default from table 1. Is there any other way to do this?
What I have:
<v-select>
:items="table1"
v-model="table2"
</v-select>
Essentially is there a way to do this:
<v-select>
:items="table1"
v-model="table2" - connect to db
v-model="table1[1]" - set default selected value
</v-select>