You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

337 B

修改延时

  • order: 2

自定义时长 10s,默认时长为 1.5s


import { message, Button } from 'antd';

const success = function () {
  message.success('这是一条成功的提示,并将于10秒后消失', 10);
};

ReactDOM.render(<Button onClick={success}>自定义时长提示</Button>
, mountNode);