Skip to content
On this page

Message 消息

基本使用

基本使用
调用`Message`函数进行消息提示
<template>
  <div class="everyMargin">
    <h-button @click="showMessage('info', '普通消息')" type="primary">普通消息</h-button>
    <h-button @click="showMessage('success', '成功消息')" type="info">成功消息</h-button>
    <h-button @click="showMessage('warning', '警告消息')" type="warning">警告消息</h-button>
    <h-button @click="showMessage('danger', '危险消息')" type="error">危险消息</h-button>
  </div>
</template>

<script lang="ts" setup>
import { Message } from '@hare-ui/hare-ui'
function showMessage(type, message) {
  Message({
    center: true,
    type,
    message
  })
}
</script>

<style scoped lang="scss">
.everyMargin *{
  margin: 0 2px;
}
</style>

组件 API

Message 配置项

参数说明类型可选值默认值
message消息内容string--
type消息类型stringinfo/success/warning/dangerinfo
duration消息持续毫秒数number-2000
center消息是否居中boolean-true
onClose消息消失是的回调函数function--