1、[antd: Drawer] `visible` is deprecated which will be removed in next major version, please use `open` instead.
解决:将Drawer组件 visble 改为 open;
2、[antd: Descriptions] Sum of column `span` in a line not match `column` of Descriptions.
解决:默认一行显示三个,一个占位一行,如果想占多列,请使用表格。
3、[antd: Tabs] Tabs.TabPane is deprecated. Please use `items` directly. 文章来源:https://www.toymoban.com/news/detail-654077.html
换位 item 写法文章来源地址https://www.toymoban.com/news/detail-654077.html
const items = [
{ label: '账户密码登录', key: 'account', },
{ label: '手机号登录', key: 'mobile', },
];
<Tabs activeKey={type} onChange={setType} items={items}></Tabs>
到了这里,关于Ant react 组件报错解决整理 4.4的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!