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/popconfirm/demo/locale.md

341 B

国际化

  • order: 2

设置 okText cancelText 以自定义按钮文字。


import { Popconfirm } from 'antd';

ReactDOM.render(
  <Popconfirm title="Are you sure" okText="Yes" cancelText="No">
    <a href="javascript:;">Delete</a>
  </Popconfirm>
, document.getElementById('components-popconfirm-demo-locale'));