You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/message/demo/info.md

27 lines
369 B

7 years ago
<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');
7 years ago
},
}
}
</script>
```