#### 普通提示
信息提醒反馈。
#### Normal prompt
Normal message for information.
<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>