ant-design-vue/components/popconfirm/demo/local.vue

21 lines
339 B
Vue
Raw Normal View History

2018-01-15 09:33:34 +00:00
<template>
<div>
<md>
## 国际化
使用 `okText` `cancelText` 自定义按钮文字
</md>
<Popconfirm title="Are you sure" okText="Yes" cancelText="No">
<a href="#">Delete</a>
</Popconfirm>
</div>
</template>
<script>
import { Popconfirm } from 'antd'
export default {
components: {
Popconfirm,
},
}
</script>