We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 673821e commit 35f1ca3Copy full SHA for 35f1ca3
src/components/table/index.js
@@ -274,7 +274,7 @@ export default {
274
})
275
const table = (
276
<a-table {...{ props, scopedSlots: { ...this.$scopedSlots } }} onChange={this.loadData}>
277
- {this.$slots.default}
+ { Object.keys(this.$slots).map(name => (<template slot={name}>{this.$slots[name]}</template>)) }
278
</a-table>
279
)
280
0 commit comments