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
2.2.0-beta.2
Windows 10 Home, Chrome 91, Vue 3.1.1, Ant Design 2.2.0-beta-2
https://2x.antdv.com/components/table#components-table-demo-edit-row
Use the sample code in minimal reproduction link (select version 2.X), use JS
normal operation
page is crashing with error: v-model value must be a valid JavaScript member expression
Error on line 7 v-model:value="editableData[record.key][col]"
temporary work around is to use
:value="editableData[record.key][col]" @change="(e) => editableData[record.key][col] = e.target.value"
The text was updated successfully, but these errors were encountered:
vuejs/core#3910
Sorry, something went wrong.
update vue to 3.1.2
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
Version
2.2.0-beta.2
Environment
Windows 10 Home, Chrome 91, Vue 3.1.1, Ant Design 2.2.0-beta-2
Reproduction link
https://2x.antdv.com/components/table#components-table-demo-edit-row
Steps to reproduce
Use the sample code in minimal reproduction link (select version 2.X), use JS
What is expected?
normal operation
What is actually happening?
page is crashing with error: v-model value must be a valid JavaScript member expression
Error on line 7 v-model:value="editableData[record.key][col]"
temporary work around is to use
:value="editableData[record.key][col]"
@change="(e) => editableData[record.key][col] = e.target.value"
The text was updated successfully, but these errors were encountered: