mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(GridItem): add icon-color prop (#3386)
This commit is contained in:
parent
3a3999ccaa
commit
375eb64adc
@ -15,6 +15,7 @@ VantComponent({
|
||||
|
||||
props: {
|
||||
icon: String,
|
||||
iconColor: String,
|
||||
dot: Boolean,
|
||||
info: null,
|
||||
badge: null,
|
||||
|
@ -10,7 +10,7 @@
|
||||
</block>
|
||||
<block wx:else>
|
||||
<view class="van-grid-item__icon icon-class">
|
||||
<van-icon wx:if="{{ icon }}" name="{{ icon }}" dot="{{ dot }}" info="{{ badge || info }}" size="{{ iconSize }}" />
|
||||
<van-icon wx:if="{{ icon }}" name="{{ icon }}" color="{{ iconColor }}" dot="{{ dot }}" info="{{ badge || info }}" size="{{ iconSize }}" />
|
||||
<slot wx:else name="icon"></slot>
|
||||
</view>
|
||||
<view class="van-grid-item__text text-class">
|
||||
|
@ -149,6 +149,7 @@
|
||||
| --- | --- | --- | --- | --- |
|
||||
| text | 文字 | _string_ | - | - |
|
||||
| icon | 图标名称或图片链接,可选值见 [Icon 组件](#/icon) | _string_ | - | - |
|
||||
| icon-color | 图标颜色 | _string_ | - | - |
|
||||
| dot | 是否显示图标右上角小红点 | _boolean_ | `false` | - |
|
||||
| badge | 图标右上角徽标的内容 | _string \| number_ | - | - |
|
||||
| url | 点击后跳转的链接地址 | _string_ | - | - |
|
||||
|
Loading…
x
Reference in New Issue
Block a user