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

38 lines
699 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>
2018-03-20 13:48:01 +00:00
import { message } from 'antd'
2018-02-06 08:43:59 +00:00
export default {
methods: {
success () {
2018-03-20 13:48:01 +00:00
message.success('This is a message of success');
2018-02-06 08:43:59 +00:00
},
error () {
2018-03-20 13:48:01 +00:00
message.error('This is a message of error');
2018-02-06 08:43:59 +00:00
},
warning () {
2018-03-20 13:48:01 +00:00
message.warning('This is message of warning');
2018-02-06 08:43:59 +00:00
},
}
}
</script>
```