Alert 警告提示

警告提示,展现需要关注的信息。

何时使用

  • 当某个页面需要向用户显示警告的信息时。
  • 非浮层的静态展现形式,始终展现,不会自动消失,用户可以点击关闭。

代码演示

基本

基本使用。

  1. <template>
  2. <v-alert type="success" message="成功提示的文案"></v-alert>
  3. <v-alert type="success">
  4. 成功提示的辅助性文字介绍成功提示的辅助性文字介绍成功提示的辅助性文字介绍成功提示的辅助性文字介绍
  5. </v-alert>
  6. </template>

四种样式

四种样式。

  1. <template>
  2. <v-alert type="success" message="成功提示的文案"></v-alert>
  3. <v-alert type="info" message="消息提示的文案"></v-alert>
  4. <v-alert type="warning" message="警告提示的文案"></v-alert>
  5. <v-alert type="error" message="错误提示的文案"></v-alert>
  6. </template>

可关闭的警告提示

可关闭的警告提示。

  1. <template>
  2. <v-alert type="error" message="错误提示的文案"
  3. description="错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍"
  4. closable @close="onClose"></v-alert>
  5. </template>
  6. <script>
  7. export default {
  8. methods: {
  9. onClose() {
  10. alert("Alert Closed!")
  11. }
  12. }
  13. }
  14. </script>

自定义关闭

可以自定义关闭,自定义的文字会替换掉原先的关闭Icon。

  1. <template>
  2. <v-alert type="info" message="消息提示的文案"
  3. closable close-text="关闭"></v-alert>
  4. </template>

图标

可口的图标让信息类型更加醒目。

  1. <template>
  2. <v-alert type="success" message="成功提示的文案" show-icon></v-alert>
  3. <v-alert type="info" message="消息提示的文案" show-icon></v-alert>
  4. <v-alert type="warning" message="警告提示的文案" show-icon></v-alert>
  5. <v-alert type="error" message="错误提示的文案" show-icon></v-alert>
  6. <v-alert type="success" message="成功提示的文案" show-icon
  7. description="成功提示的辅助性文字介绍成功提示的辅助性文字介绍成功提示的辅助性文字介绍成功提示的辅助性文字介绍"></v-alert>
  8. <v-alert type="info" message="消息提示的文案" show-icon
  9. description="消息提示的辅助性文字介绍消息提示的辅助性文字介绍消息提示的辅助性文字介绍"></v-alert>
  10. <v-alert type="warning" message="警告提示的文案" show-icon
  11. description="警告提示的辅助性文字介绍警告提示的辅助性文字介绍"></v-alert>
  12. <v-alert type="error" message="错误提示的文案" show-icon description="错误错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍"></v-alert>
  13. </template>

API

Alert Props

参数说明类型可选值默认值
type主题Stringsuccess/warning/info/errorinfo
description辅助性文字String
closable是否可关闭Booleantrue
close-text关闭按钮自定义文本String
show-icon是否显示图标Booleanfalse

Alert Events

事件名称说明回调参数
close关闭alert时触发的事件