feat(goods-action-icon): add size prop (#5457)

This commit is contained in:
johnsonwong666 2023-07-03 17:06:35 +08:00 committed by GitHub
parent 35d8346647
commit 22acb8ddbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 1 deletions

View File

@ -12,6 +12,7 @@ VantComponent({
dot: Boolean, dot: Boolean,
info: String, info: String,
icon: String, icon: String,
size: String,
color: String, color: String,
classPrefix: { classPrefix: {
type: String, type: String,

View File

@ -27,6 +27,7 @@
name="{{ icon }}" name="{{ icon }}"
dot="{{ dot }}" dot="{{ dot }}"
info="{{ info }}" info="{{ info }}"
size="{{ size }}"
color="{{ color }}" color="{{ color }}"
class-prefix="{{ classPrefix }}" class-prefix="{{ classPrefix }}"
class="van-goods-action-icon__icon" class="van-goods-action-icon__icon"

View File

@ -105,6 +105,7 @@ Page({
| icon | 图标类型,可选值见`icon`组件 | _string_ | - | | icon | 图标类型,可选值见`icon`组件 | _string_ | - |
| info | 图标右上角提示信息 | _string \| number_ | - | | info | 图标右上角提示信息 | _string \| number_ | - |
| color `v1.10.15` | 图标颜色 | _string_ | `inherit` | | color `v1.10.15` | 图标颜色 | _string_ | `inherit` |
| size | 图标大小,如 20px2em默认单位为px | _string \| number_ | - |
| url | 点击后跳转的链接地址 | _string_ | - | | url | 点击后跳转的链接地址 | _string_ | - |
| link-type | 链接跳转类型,可选值为 `redirectTo` `switchTab` `reLaunch` | _string_ | `navigateTo` | | link-type | 链接跳转类型,可选值为 `redirectTo` `switchTab` `reLaunch` | _string_ | `navigateTo` |
| id | 标识符 | _string_ | - | | id | 标识符 | _string_ | - |

View File

@ -86,7 +86,7 @@
| dot | 是否显示图标右上角小红点 | _boolean_ | `false` | | dot | 是否显示图标右上角小红点 | _boolean_ | `false` |
| info | 图标右上角文字提示 | _string \| number_ | - | | info | 图标右上角文字提示 | _string \| number_ | - |
| color | 图标颜色 | _string_ | `inherit` | | color | 图标颜色 | _string_ | `inherit` |
| size | 图标大小,如 `20px``2em`,默认单位为`px` | _string \| number_ | `inherit` | | size `v1.10.20` | 图标大小,如 `20px``2em`,默认单位为`px` | _string \| number_ | `inherit` |
| custom-style | 自定义样式 | _string_ | - | | custom-style | 自定义样式 | _string_ | - |
| class-prefix | 类名前缀 | _string_ | `van-icon` | | class-prefix | 类名前缀 | _string_ | `van-icon` |