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

浙公网安备 33010602011771号