From 85b1f83a9d12e5e8cbf8658c4d37b50037c4f8f3 Mon Sep 17 00:00:00 2001 From: neverland Date: Wed, 4 Aug 2021 10:21:13 +0800 Subject: [PATCH] feat(Button): loading-size prop support number type (#9177) --- src/button/Button.tsx | 2 +- src/button/README.md | 2 +- src/button/README.zh-CN.md | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/button/Button.tsx b/src/button/Button.tsx index 11fe62667..8e046295a 100644 --- a/src/button/Button.tsx +++ b/src/button/Button.tsx @@ -40,7 +40,7 @@ export default defineComponent({ hairline: Boolean, disabled: Boolean, iconPrefix: String, - loadingSize: String, + loadingSize: [Number, String], loadingText: String, loadingType: String as PropType, tag: { diff --git a/src/button/README.md b/src/button/README.md index 4cff15139..6b0554863 100644 --- a/src/button/README.md +++ b/src/button/README.md @@ -129,7 +129,7 @@ app.use(Button); | loading | Whether show loading status | _boolean_ | `false` | | loading-text | Loading text | _string_ | - | | loading-type | Loading type, can be set to `spinner` | _string_ | `circular` | -| loading-size | Loading icon size | _string_ | `20px` | +| loading-size | Loading icon size | _number \| string_ | `20px` | | url | Link URL | _string_ | - | | to | Target route of the link, same as using vue-router | _string \| object_ | - | | replace | If true, the navigation will not leave a history record | _boolean_ | `false` | diff --git a/src/button/README.zh-CN.md b/src/button/README.zh-CN.md index 2d9211de2..96e262daa 100644 --- a/src/button/README.zh-CN.md +++ b/src/button/README.zh-CN.md @@ -139,7 +139,7 @@ app.use(Button); | text | 按钮文字 | _string_ | - | | color | 按钮颜色,支持传入 `linear-gradient` 渐变色 | _string_ | - | | icon | 左侧[图标名称](#/zh-CN/icon)或图片链接 | _string_ | - | -| icon-prefix | 图标类名前缀,同 Icon 组件的 [class-prefix 属性](#/zh-CN/icon#props) | _string_ | `van-icon` | +| icon-prefix | 图标类名前缀,等同于 Icon 组件的 [class-prefix 属性](#/zh-CN/icon#props) | _string_ | `van-icon` | | icon-position | 图标展示位置,可选值为 `right` | _string_ | `left` | | tag | 按钮根节点的 HTML 标签 | _string_ | `button` | | native-type | 原生 button 标签的 type 属性 | _string_ | `button` | @@ -152,9 +152,9 @@ app.use(Button); | loading | 是否显示为加载状态 | _boolean_ | `false` | | loading-text | 加载状态提示文字 | _string_ | - | | loading-type | [加载图标类型](#/zh-CN/loading),可选值为 `spinner` | _string_ | `circular` | -| loading-size | 加载图标大小 | _string_ | `20px` | +| loading-size | 加载图标大小,默认单位为 `px` | _number \| string_ | `20px` | | url | 点击后跳转的链接地址 | _string_ | - | -| to | 点击后跳转的目标路由对象,同 vue-router 的 [to 属性](https://router.vuejs.org/zh/api/#to) | _string \| object_ | - | +| to | 点击后跳转的目标路由对象,等同于 vue-router 的 [to 属性](https://router.vuejs.org/zh/api/#to) | _string \| object_ | - | | replace | 是否在跳转时替换当前页面历史 | _boolean_ | `false` | ### Events