Skip to content

Alert 警告

用于页面中展示重要的提示信息。

基础用法

页面中的非浮层元素,不会自动消失。 Alert 组件提供四种主题,由type属性指定,默认值为info

<template>
  <Alert content="成功提示的文案" type="success"> </Alert>
  <Alert content="消息提示的文案"> </Alert>
  <Alert content="警告提示的文案" type="warning"> </Alert>
  <Alert content="错误提示的文案" type="danger"> </Alert>
</template>

<script setup>
import Alert from '@/components/Alert/Alert.vue'
</script>

<style scoped>
.s-alert {
  margin: 20px 0;
}
</style>

主题

Alert 组件提供了两个不同的主题:lightdark。通过设置effect属性来改变主题,默认为light

<template>
  <Alert content="成功提示的文案" type="success" effect="dark"> </Alert>
  <Alert content="消息提示的文案" effect="dark"> </Alert>
  <Alert content="警告提示的文案" type="warning" effect="dark"> </Alert>
  <Alert content="错误提示的文案" type="danger" effect="dark"> </Alert>
</template>

<script setup>
import Alert from '@/components/Alert/Alert.vue'
</script>

<style scoped>
.s-alert {
  margin: 20px 0;
}
</style>

使用图标

你可以通过为 Alert 组件添加图标来提高可读性。

通过设置 show-icon 属性来显示 Alert 的 icon,这能更有效地向用户展示你的显示意图。

<template>
  <Alert content="成功提示的文案" type="success" show-icon> </Alert>
  <Alert content="消息提示的文案" show-icon> </Alert>
  <Alert content="警告提示的文案" type="warning" show-icon> </Alert>
  <Alert content="错误提示的文案" type="danger" show-icon> </Alert>
</template>

<script setup>
import Alert from '@/components/Alert/Alert.vue'
</script>

<style scoped>
.s-alert {
  margin: 20px 0;
}
</style>

Alert Attributes

参数说明类型可选值默认值
title标题string
type主题stringsuccess/warning/info/errorinfo
effect选择提供的主题stringlight/darklight
description辅助性文字。也可通过默认 slot 传入string
closable是否可关闭booleantrue
close-text关闭按钮自定义文本string
center文字是否居中booleanfalse
show-icon是否显示图标booleanfalse
close-text关闭按钮自定义文本string
center文字是否居中booleanfalse

Released under the MIT License.