- [ ] I have searched the [issues](https://github.com/vueComponent/ant-design-vue/issues) of this repository and believe that this is not a duplicate. ### What problem does this feature solve? https://ant.design/components/tabs-cn#tabs-demo-custom-tab-bar-node 更便捷实现自定义操作 ### What does the proposed API look like? 通用版本 ```vue <DefaultTabBar {...tabBarProps}> {(node) => ( <DraggableTabNode {...(node as React.ReactElement<DraggableTabPaneProps>).props} key={node.key} > {node} </DraggableTabNode> )} </DefaultTabBar> ``` 传递 default 插槽 传递 node
What problem does this feature solve?
https://ant.design/components/tabs-cn#tabs-demo-custom-tab-bar-node
更便捷实现自定义操作
What does the proposed API look like?
通用版本
传递 default 插槽 传递 node