You can not 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-vue/components/modal/demo/locale.md

59 lines
1010 B

<cn>
#### 国际化
设置 `okText``cancelText` 以自定义按钮文字。
</cn>
<us>
#### Internationalization
To customize the text of the buttons, you need to set `okText` and `cancelText` props.
</us>
```html
<template>
<div>
<a-button type="primary" @click="showModal">Modal</a-button>
<a-modal
title="Modal"
v-model="visible"
@ok="hideModal"
okText="确认"
cancelText="取消"
>
<p>Bla bla ...</p>
<p>Bla bla ...</p>
<p>Bla bla ...</p>
</a-modal>
<br />
<br />
<a-button @click="confirm">Confirm</a-button>
</div>
</template>
<script>
export default {
data() {
return {
visible: false,
}
},
methods: {
showModal() {
this.visible = true
},
hideModal() {
this.visible = false
},
confirm() {
this.$confirm({
title: 'Confirm',
content: 'Bla bla ...',
okText: '确认',
cancelText: '取消',
});
}
}
}
</script>
```