27 lines
369 B
Markdown
27 lines
369 B
Markdown
|
|
||
|
<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 () {
|
||
|
this.$message.info('This is a normal message');
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
```
|
||
|
|