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.1.1
vue3
#3938
Still not implemented
a-table-column can use v-for in a-table-column-group
a-table-column using v-for in a-table-column-group will result in empty dom
The text was updated successfully, but these errors were encountered:
<a-table-column-group> <template #title><span style="color: #1890ff">Name</span></template> //这是成功的 <a-table-column key="firstName" data-index="firstName"> <template #title><span style="color: #1890ff">First Name</span></template> </a-table-column> //这是失败的 <a-table-column v-for="item in 3" :key="item" :title="item" :data-index="item" /> </a-table-column-group> <a-table-column key="age" title="Age" data-index="age" /> <a-table-column key="address" title="Address" data-index="address" />
Sorry, something went wrong.
已经修复了,等发版
Duplicate of #3934
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.1.1
Environment
vue3
Reproduction link
#3938
Steps to reproduce
Still not implemented
What is expected?
a-table-column can use v-for in a-table-column-group
What is actually happening?
a-table-column using v-for in a-table-column-group will result in empty dom
The text was updated successfully, but these errors were encountered: