mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 04:27:41 +08:00
369 B
369 B
#### 普通提示
信息提醒反馈。
#### Normal prompt
Normal messages as feedbacks.
<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>