Result 结果
用于对用户的操作结果或者异常状态做反馈。
基础用法
<template>
<el-row>
<el-col :sm="12" :lg="6">
<el-result
icon="success"
title="Success Tip"
sub-title="Please follow the instructions"
>
<template #extra>
<el-button type="primary">Back</el-button>
</template>
</el-result>
</el-col>
<el-col :sm="12" :lg="6">
<el-result
icon="warning"
title="Warning Tip"
sub-title="Please follow the instructions"
>
<template #extra>
<el-button type="primary">Back</el-button>
</template>
</el-result>
</el-col>
<el-col :sm="12" :lg="6">
<el-result
icon="error"
title="Error Tip"
sub-title="Please follow the instructions"
>
<template #extra>
<el-button type="primary">Back</el-button>
</template>
</el-result>
</el-col>
<el-col :sm="12" :lg="6">
<el-result icon="info" title="Info Tip">
<template #sub-title>
<p>Using slot as subtitle</p>
</template>
<template #extra>
<el-button type="primary">Back</el-button>
</template>
</el-result>
</el-col>
</el-row>
</template>
自定义内容
<template>
<el-result title="404" sub-title="Sorry, request error">
<template #icon>
<el-image
src="https://shadow.elemecdn.com/app/element/hamburger.9cf7b091-55e9-11e9-a976-7f4d0b07eef6.png"
/>
</template>
<template #extra>
<el-button type="primary">Back</el-button>
</template>
</el-result>
</template>
Result 属性
属性 | 说明 | 类型 | 可选值 | 默认值 |
---|
title | 标题 | string | — | — |
sub-title | 二级标题 | string | — | — |
icon | 图标类型 | string | success / warning / info / error | info |
Result 插槽
名称 | 说明 |
---|
icon | 自定义图标 |
title | 自定义标题 |
sub-title | 自定义二级标题 |
extra | 自定义底部额外区域 |
源代码
组件 • 文档
贡献者
三咲智子
云游君
JeremyWuuuuu
류한경
Aex
kooriookami
zz
Delyan Haralanov
blackie
Chen