You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/confirm/demo/basic.md

365 B

基本

  • order: 0

使用很简单。


var confirm = antd.confirm;

function showConfirm(){
  confirm({
    title: '第一个 confirm',
    content: 'confirm 内容'
  });
}

React.render(
<button className="ant-btn ant-btn-primary" onClick={showConfirm}>
  显示确认框
</button>, document.getElementById('components-confirm-demo-basic'));