You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This rule should check for the recently added vue compiler warning about using props directly with v-model
What category should the rule belong to?
[ ] Enforces code style (layout)
[x] Warns about a potential error (problem)
[ ] Suggests an alternate way of doing something (suggestion)
[ ] Other (please specify:)
Provide 2-3 code examples that this rule should warn about:
Please describe what the rule should do:
This rule should check for the recently added vue compiler warning about using props directly with
v-model
What category should the rule belong to?
[ ] Enforces code style (layout)
[x] Warns about a potential error (problem)
[ ] Suggests an alternate way of doing something (suggestion)
[ ] Other (please specify:)
Provide 2-3 code examples that this rule should warn about:
Additional context
The above example now throws an error when compiling with vite:
[vite:vue] v-model cannot be used on a prop, because local prop bindings are not writable.
vuejs/core#5584 (comment)
The text was updated successfully, but these errors were encountered: