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
According the doc, we can use v-model like
<A v-model={[val, "argument", ["modifier"]]} />
we can use multiple v-model with differectn argument like
<A v-model={[val1, "argument1", ["modifier1"]]} v-model={[val2, "argument2", ["modifier2"]]} />
but, if we use tsx, ts will throw a error like "TS17001: JSX elements cannot have multiple attributes with the same name."
Although, I don't think it's a issue of babel-plugin-jsx, see ts playground, I want to know any workaround except using prop + event handler
The text was updated successfully, but these errors were encountered:
@colgin, it will take a lot of time write, but checkout this component and if you have any questions you are free to ask.
Sorry, something went wrong.
没看明白,能都简单明了?
No branches or pull requests
🧐 Problem Description
According the doc, we can use v-model like
we can use multiple v-model with differectn argument like
but, if we use tsx, ts will throw a error like "TS17001: JSX elements cannot have multiple attributes with the same name."
Although, I don't think it's a issue of babel-plugin-jsx, see ts playground, I want to know any workaround except using prop + event handler
💻 Sample code
🚑 Other information
The text was updated successfully, but these errors were encountered: