icon-description.vue 574 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <el-alert
  3. title="success alert"
  4. type="success"
  5. description="more text description"
  6. show-icon
  7. />
  8. <el-alert
  9. title="info alert"
  10. type="info"
  11. description="more text description"
  12. show-icon
  13. />
  14. <el-alert
  15. title="warning alert"
  16. type="warning"
  17. description="more text description"
  18. show-icon
  19. />
  20. <el-alert
  21. title="error alert"
  22. type="error"
  23. description="more text description"
  24. show-icon
  25. />
  26. </template>
  27. <style scoped>
  28. .el-alert {
  29. margin: 20px 0 0;
  30. }
  31. .el-alert:first-child {
  32. margin: 0;
  33. }
  34. </style>