IkColorfulCard 多彩渐变卡片

Props
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|---|---|---|---|---|
| colorFrom | 开始颜色 | String | - | '#843cf6' |
| colorTo | 终止颜色 | String | - | '#759bff' |
| header | 头部标题 | String | - | - |
| num | 数字标记 | Number | - | - |
| tip | 底行提示文字 | String | - | - |
| icon | 图标,使用 SvgIcon 组件,与该组件 name 参数相同 | String | - | - |
示例代码
vue
<template>
<!-- 示例 -->
<IkColorfulCard
header="标题"
:num="112"
tip="底行提示文字"
icon="icon-xuanyiqiban"
/>
</template>