- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 432
New issue
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
Duplicate 'value' attribute for <input type="radio"> when using it with v-model #1775
Comments
Got same error, when using
vue: 2.7 tsconfig.json:
Temporary solution: Downgrade to |
Permalink to the specific lines @2-5 was referring to, since the reference moved: https://github.com/johnsoncodehk/volar/blob/018d260d7bd00b06def4bcd600bf8d1e9347a7ec/packages/vue-language-core/src/generators/template.ts#L2033-L2034 |
Got this error when using the checkbox like this: <input
type="checkbox"
class="checkbox"
v-model="form.show_password"
:checked="form.show_password"
name="show_password"
> The ':checked' is marked as the problem. |
Hack solution, use |
Well, this is just invalid. v-model already handles |
The following TypeScript error is thrown:
for the following template (inspired from https://vuejs.org/guide/essentials/forms.html#radio):
Volar special-cases the
<input type="checkbox">
case which works, but not the<input type="radio">
:https://github.com/johnsoncodehk/volar/blob/master/packages/vue-language-core/src/generators/template.ts#L2000
The text was updated successfully, but these errors were encountered: