Antd Modalimport { Modal, Button } from 'antd';const confirm = Modal.confirm;function showConfirm() {
confirm({ title: 'Want to delete these items?', content: 'some descriptions',
onOk() { console.log('OK');
},
onCancel() {},
});
}
ReactDOM.render( <Button onClick={showConfirm}>
confirmation modal dialog </Button>, mountNode);content内容是否允许多行。比如content: "hello \n world";或者content: "hello<br/>world"这样尝试发现不行?应该怎么做呢?
添加回答
举报
0/150
提交
取消