result.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <el-row>
  3. <el-col :sm="12" :lg="6">
  4. <el-result
  5. icon="success"
  6. title="Success Tip"
  7. sub-title="Please follow the instructions"
  8. >
  9. <template #extra>
  10. <el-button type="primary">Back</el-button>
  11. </template>
  12. </el-result>
  13. </el-col>
  14. <el-col :sm="12" :lg="6">
  15. <el-result
  16. icon="warning"
  17. title="Warning Tip"
  18. sub-title="Please follow the instructions"
  19. >
  20. <template #extra>
  21. <el-button type="primary">Back</el-button>
  22. </template>
  23. </el-result>
  24. </el-col>
  25. <el-col :sm="12" :lg="6">
  26. <el-result
  27. icon="error"
  28. title="Error Tip"
  29. sub-title="Please follow the instructions"
  30. >
  31. <template #extra>
  32. <el-button type="primary">Back</el-button>
  33. </template>
  34. </el-result>
  35. </el-col>
  36. <el-col :sm="12" :lg="6">
  37. <el-result icon="info" title="Info Tip">
  38. <template #sub-title>
  39. <p>Using slot as subtitle</p>
  40. </template>
  41. <template #extra>
  42. <el-button type="primary">Back</el-button>
  43. </template>
  44. </el-result>
  45. </el-col>
  46. </el-row>
  47. </template>