ant-design/components/popconfirm/demo/locale.md

17 lines
284 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
title: 国际化
---
2015-11-24 11:21:37 +08:00
设置 `okText` `cancelText` 以自定义按钮文字。
````jsx
import { Popconfirm } from 'antd';
ReactDOM.render(
<Popconfirm title="Are you sure" okText="Yes" cancelText="No">
2015-11-26 12:07:27 +08:00
<a href="#">Delete</a>
2015-11-24 11:21:37 +08:00
</Popconfirm>
, mountNode);
2015-11-24 11:21:37 +08:00
````