mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 11:39:28 +08:00
18 lines
341 B
Markdown
18 lines
341 B
Markdown
|
# 国际化
|
|||
|
|
|||
|
- order: 2
|
|||
|
|
|||
|
设置 `okText` `cancelText` 以自定义按钮文字。
|
|||
|
|
|||
|
---
|
|||
|
|
|||
|
````jsx
|
|||
|
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'));
|
|||
|
````
|