icon.vue 358 B

1234567891011121314
  1. <template>
  2. <el-alert title="success alert" type="success" show-icon />
  3. <el-alert title="info alert" type="info" show-icon />
  4. <el-alert title="warning alert" type="warning" show-icon />
  5. <el-alert title="error alert" type="error" show-icon />
  6. </template>
  7. <style scoped>
  8. .el-alert {
  9. margin: 20px 0 0;
  10. }
  11. .el-alert:first-child {
  12. margin: 0;
  13. }
  14. </style>