页头 - IkPageHeader
支持左侧箭头、图标、文字、右侧内容
props
TIP
组件是基于element-plus的el-affix扩展的,支持el-affix的所有配置项
props | 类型 | 说明 | 默认值 |
---|---|---|---|
title | String | 标题 | 返回 |
icon | String | 图标 | '' |
backgroundColor | String | 图标背景色 | #1ABF8 |
slot
slot | 说明 |
---|---|
title | 标题 |
icon | 图标 |
right | 右侧内容 |
示例代码
vue
<template>
<!-- 示例1 -->
<IkPageHeader title="返回上级" icon="ik-shezhi"/>
<!-- 示例2 -->
<IkPageHeader title="返回上级" icon="ik-shezhi">
<template #right>
<elbutton>提交</el-button>
</template>
</IkPageHeader>
</template>