Antd Modal confirm确认框的content内容允许换行么?

Antd Modal

import { 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"

这样尝试发现不行?

应该怎么做呢?


神不在的星期二
浏览 8029回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript