基本用法

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

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

相关文章: