其他分享
首页 > 其他分享> > 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.

作者:互联网

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',
});

标签:ConfigProvider,Please,报错,Modal,instead,antd,config
来源: https://www.cnblogs.com/yanjiez/p/15214018.html