avue消息提示框基本用法

  • Post author:
  • Post category:vue


  1. Alert 组件,提供四种提示类别,由type属性指定,默认值为info。
  2. Alert 组件,提供了两个不同的显示主题:light和dark。
  3. Alert 组件,你可以设置是否可关闭,关闭按钮的文本以及关闭时的回调函数。closable属性决定是否可关闭,接受boolean,默认为true。你可以设置close-text属性来代替右侧的关闭图标,注意:close-text必须为文本。设置close事件来设置关闭时的回调。
  4. Alert 组件,可以通过设置show-icon属性来显示 Alert 的 icon,这能更有效地向用户展示你的显示意图。
  5. Alert 组件,使用 center 属性让文字水平居中。
  6. Alert 组件,除了必填的title属性外,你可以设置description属性来帮助你更好地介绍,我们称之为辅助性文字。辅助性文字只能存放单行文本,会自动换行显示。
<template>

  <el-alert
    title="成功提示"
    type="success"
    effect="dark"
    :closable="false"
    center
     description="带有辅助性文字介绍">
    show-icon>
  </el-alert>
  
  <el-alert
    title="消息提示"
    type="info"
    effect="dark"
    close-text="知道了"
    show-icon>
  </el-alert>
  
  <el-alert
    title="警告提示"
    type="warning"
    effect="dark"
    @close="hello"
    show-icon>
  </el-alert>
  
  <el-alert
    title="错误提示"
    type="error"
    effect="dark"
    show-icon>
  </el-alert>
  
</template>

<script>
  export default {
    methods: {
      hello() {
        alert('Hello World!');
      }
    }
  }
</script>



版权声明:本文为wangxueye1996原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。