基本用法

页面中的非浮层元素,不会自动消失。

Alert 组件提供四种主题,由type属性指定,默认值为info

 1 <template>
 2   <el-alert
 3     title="成功提示的文案"
 4     type="success">
 5   </el-alert>
 6   <el-alert
 7     title="消息提示的文案"
 8     type="info">
 9   </el-alert>
10   <el-alert
11     title="警告提示的文案"
12     type="warning">
13   </el-alert>
14   <el-alert
15     title="错误提示的文案"
16     type="error">
17   </el-alert>
18 </template>
View Code

相关文章:

  • 2021-10-19
  • 2021-10-07
  • 2021-07-02
  • 2022-12-23
  • 2022-01-03
  • 2021-12-06
  • 2021-12-18
猜你喜欢
  • 2021-10-15
  • 2021-12-18
  • 2022-12-23
  • 2021-12-05
  • 2021-06-06
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案