It appears that using v-model on select inside v-translate block is causing troubles.
Simple case to reproduce the problem :
<div v-translate>
<select v-model="selected">
<option value="1">1</option>
<option value="2">2</option>
</select>
<span>Selected value : {{ this.selected }} </span>
</div>
this.selected is always equal to the initial value
It appears that using
v-modelonselectinsidev-translateblock is causing troubles.Simple case to reproduce the problem :
this.selectedis always equal to the initial value