Antd - Warning: [antd: Modal] Modal.config is deprecated. Please use ConfigProvider.config instead.

antd报错

Warning: [antd: Modal] Modal.config is deprecated. Please use ConfigProvider.config instead.

原因

版本更新导致不支持,如报错内容

解决

使用 ConfigProvider.config 代替 Modal.config
且属性 rootPrefixCls 更新为 prefixCls

//old
Modal.config({
  rootPrefixCls: 'xxx',
})
//new
ConfigProvider.config({
  prefixCls: 'xxx',
});
posted @ 2021-09-01 11:49  YanjieZ  阅读(1398)  评论(0编辑  收藏  举报
Yanjie Z 的一些学习、踩坑、研究的记录,若有问题欢迎指正