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/message/demo/other.md

37 lines
684 B

7 years ago
<cn>
#### 其他提示类型
包括成功、失败、警告。
</cn>
<us>
#### Other types of message
Messages of success, error and warning types.
</us>
```html
<template>
<div>
<a-button @click="success">Success</a-button>
<a-button @click="error">Error</a-button>
<a-button @click="warning">Warning</a-button>
</div>
</template>
<script>
export default {
methods: {
success () {
this.$message.success('This is a message of success');
7 years ago
},
error () {
this.$message.error('This is a message of error');
7 years ago
},
warning () {
this.$message.warning('This is message of warning');
7 years ago
},
}
}
</script>
```