如antd UI库,可以预先全局设置默认值来统一整体页面风格

import { Button } from 'antd';

function setDefaultProps(Component, defaultProps) {
  Component.defaultProps = {
    ...Component.defaultProps,
    ...defaultProps
  };
}

setDefaultProps(Button, {
  size: 'default',
  type: 'primary'
});


版权声明:本文为qq_36411712原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。