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

25 lines
367 B
Markdown
Raw Normal View History

2018-02-06 08:43:59 +00:00
<cn>
#### 普通提示
信息提醒反馈。
</cn>
<us>
#### Normal prompt
Normal messages as feedbacks.
</us>
2019-10-09 10:32:23 +00:00
```tpl
2018-02-06 08:43:59 +00:00
<template>
<a-button type="primary" @click="info">Display normal message</a-button>
</template>
<script>
export default {
methods: {
2019-09-28 12:45:07 +00:00
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
},
2019-09-28 12:45:07 +00:00
},
};
2018-02-06 08:43:59 +00:00
</script>
```