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
valid-v-model
Tell us about your environment
Please show your full configuration:
{ "rules" : { "vue/valid-v-model": "error" } }
What did you do?
<template> <div> <div v-for="e in list"> <input v-model="e"> </div> </div> </template>
What did you expect to happen?
Should be report that the variable e is assigned to v-model.
e
'v-model' directives cannot update the iteration variable 'e' itself.
What actually happened?
But the variable name is always x.
x
'v-model' directives cannot update the iteration variable 'x' itself.
The text was updated successfully, but these errors were encountered:
Fixed #648
cd8ce3d
Fixed #648 (#649)
7bb5438
No branches or pull requests
Tell us about your environment
Please show your full configuration:
What did you do?
What did you expect to happen?
Should be report that the variable
e
is assigned to v-model.What actually happened?
But the variable name is always
x
.The text was updated successfully, but these errors were encountered: