ant-design-vue/antdv-demo/docs/popconfirm/demo/local.md

18 lines
335 B
Markdown
Raw Normal View History

2021-03-12 07:48:30 +00:00
<cn>
#### 国际化
使用 `okText``cancelText` 自定义按钮文字。
</cn>
<us>
#### Locale text
Set `okText` and `cancelText` props to customize the button's labels.
</us>
```vue
<template>
<a-popconfirm title="Are you sure" ok-text="Yes" cancel-text="No">
<a href="#">Delete</a>
</a-popconfirm>
</template>
```