2018-02-06 08:43:59 +00:00
|
|
|
|
|
|
|
<cn>
|
|
|
|
#### 普通提示
|
|
|
|
信息提醒反馈。
|
|
|
|
</cn>
|
|
|
|
|
|
|
|
<us>
|
|
|
|
#### Normal prompt
|
|
|
|
Normal messages as feedbacks.
|
|
|
|
</us>
|
|
|
|
|
|
|
|
```html
|
|
|
|
<template>
|
|
|
|
<a-button type="primary" @click="info">Display normal message</a-button>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
methods: {
|
|
|
|
info () {
|
2018-04-08 13:17:20 +00:00
|
|
|
this.$message.info('This is a normal message');
|
2018-02-06 08:43:59 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
```
|
|
|
|
|