We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It appears that using v-model on select inside v-translate block is causing troubles.
v-model
select
v-translate
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
this.selected
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It appears that using
v-model
onselect
insidev-translate
block is causing troubles.Simple case to reproduce the problem :
this.selected
is always equal to the initial valueThe text was updated successfully, but these errors were encountered: