ant-design-vue/components/message/demo/other.md

37 lines
684 B
Markdown
Raw Normal View History

2018-02-06 08:43:59 +00:00
<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 () {
2018-04-08 13:17:20 +00:00
this.$message.success('This is a message of success');
2018-02-06 08:43:59 +00:00
},
error () {
2018-04-08 13:17:20 +00:00
this.$message.error('This is a message of error');
2018-02-06 08:43:59 +00:00
},
warning () {
2018-04-08 13:17:20 +00:00
this.$message.warning('This is message of warning');
2018-02-06 08:43:59 +00:00
},
}
}
</script>
```