我的数据对象:
data: {
selected: {
'type': null,
'instrument': null
},
我的模板:
<select v-model="selected['instrument']" @change="switchFilter('instrument', $event)">
<option v-for="instrument in instruments" :value="instrument.value">@{{ instrument.text }}</option>
</select>
<select v-model="selected['type']" @change="switchFilter('type', $event)">
<option v-for="type in types" :value="type.value">@{{ type.text }}</option>
</select>
如何同时查看两个选定的索引?每当任何索引更新时,我都想做这样的事情:
watch: {
selected: function(o, n) {
...
}
}
我认为您可以这样做: