basic-usage.vue 1.3 KB

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