mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Button): add icon-prefix prop (#5666)
This commit is contained in:
parent
09b57901f5
commit
130e1ac7a6
@ -106,6 +106,7 @@ Vue.use(Button);
|
|||||||
| text | Text | *string* | - |
|
| text | Text | *string* | - |
|
||||||
| color `v2.1.8` | Color, support linear-gradient | *string* | - |
|
| color `v2.1.8` | Color, support linear-gradient | *string* | - |
|
||||||
| icon | Left Icon | *string* | - |
|
| icon | Left Icon | *string* | - |
|
||||||
|
| icon-prefix `v2.5.3` | Icon className prefix | *string* | `van-icon` |
|
||||||
| tag | HTML Tag | *string* | `button` |
|
| tag | HTML Tag | *string* | `button` |
|
||||||
| native-type | Native Type Attribute | *string* | `''` |
|
| native-type | Native Type Attribute | *string* | `''` |
|
||||||
| plain | Whether to be plain button | *boolean* | `false` |
|
| plain | Whether to be plain button | *boolean* | `false` |
|
||||||
|
@ -128,8 +128,9 @@ Vue.use(Button);
|
|||||||
| text | 按钮文字 | *string* | - |
|
| text | 按钮文字 | *string* | - |
|
||||||
| color `v2.1.8` | 按钮颜色,支持传入`linear-gradient`渐变色 | *string* | - |
|
| color `v2.1.8` | 按钮颜色,支持传入`linear-gradient`渐变色 | *string* | - |
|
||||||
| icon | 左侧[图标名称](#/zh-CN/icon)或图片链接 | *string* | - |
|
| icon | 左侧[图标名称](#/zh-CN/icon)或图片链接 | *string* | - |
|
||||||
| tag | HTML 标签 | *string* | `button` |
|
| icon-prefix `v2.5.3` | 图标类名前缀,同 Icon 组件的 [class-prefix 属性](#/zh-CN/icon#props) | *string* | `van-icon` |
|
||||||
| native-type | 原生 button 标签 type 属性 | *string* | - |
|
| tag | 根节点的 HTML 标签 | *string* | `button` |
|
||||||
|
| native-type | 原生 button 标签的 type 属性 | *string* | - |
|
||||||
| block | 是否为块级元素 | *boolean* | `false` |
|
| block | 是否为块级元素 | *boolean* | `false` |
|
||||||
| plain | 是否为朴素按钮 | *boolean* | `false` |
|
| plain | 是否为朴素按钮 | *boolean* | `false` |
|
||||||
| square | 是否为方形按钮 | *boolean* | `false` |
|
| square | 是否为方形按钮 | *boolean* | `false` |
|
||||||
|
@ -31,6 +31,7 @@ export type ButtonProps = RouteProps & {
|
|||||||
hairline?: boolean;
|
hairline?: boolean;
|
||||||
disabled?: boolean;
|
disabled?: boolean;
|
||||||
nativeType?: string;
|
nativeType?: string;
|
||||||
|
iconPrefix?: string;
|
||||||
loadingSize: string;
|
loadingSize: string;
|
||||||
loadingType?: LoadingType;
|
loadingType?: LoadingType;
|
||||||
loadingText?: string;
|
loadingText?: string;
|
||||||
@ -119,7 +120,9 @@ function Button(
|
|||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
} else if (icon) {
|
} else if (icon) {
|
||||||
content.push(<Icon name={icon} class={bem('icon')} />);
|
content.push(
|
||||||
|
<Icon name={icon} class={bem('icon')} classPrefix={props.iconPrefix} />
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
let text;
|
let text;
|
||||||
|
@ -114,11 +114,12 @@ Vue.use(CellGroup);
|
|||||||
|
|
||||||
| Attribute | Description | Type | Default |
|
| Attribute | Description | Type | Default |
|
||||||
|------|------|------|------|
|
|------|------|------|------|
|
||||||
| icon | Left Icon | *string* | - |
|
|
||||||
| title | Title | *number \| string* | - |
|
| title | Title | *number \| string* | - |
|
||||||
| value | Right text | *number \| string* | - |
|
| value | Right text | *number \| string* | - |
|
||||||
| label | Description below the title | *string* | - |
|
| label | Description below the title | *string* | - |
|
||||||
| size | Size,can be set to `large` | *string* | - |
|
| size | Size,can be set to `large` | *string* | - |
|
||||||
|
| icon | Left Icon | *string* | - |
|
||||||
|
| icon-prefix `v2.5.3` | Icon className prefix | *string* | `van-icon` |
|
||||||
| border | Whether to show inner border | *boolean* | `true` |
|
| border | Whether to show inner border | *boolean* | `true` |
|
||||||
| center | Whether to center content vertically | *boolean* | `true` |
|
| center | Whether to center content vertically | *boolean* | `true` |
|
||||||
| url | Link URL | *string* | - |
|
| url | Link URL | *string* | - |
|
||||||
@ -132,7 +133,6 @@ Vue.use(CellGroup);
|
|||||||
| title-class | Title className | *any* | - |
|
| title-class | Title className | *any* | - |
|
||||||
| value-class | Value className | *any* | - |
|
| value-class | Value className | *any* | - |
|
||||||
| label-class | Label className | *any* | - |
|
| label-class | Label className | *any* | - |
|
||||||
| icon-prefix `v2.5.3` | Icon className prefix | *string* | `van-icon` |
|
|
||||||
|
|
||||||
### Cell Events
|
### Cell Events
|
||||||
|
|
||||||
|
@ -125,11 +125,12 @@ Vue.use(CellGroup);
|
|||||||
|
|
||||||
| 参数 | 说明 | 类型 | 默认值 |
|
| 参数 | 说明 | 类型 | 默认值 |
|
||||||
|------|------|------|------|
|
|------|------|------|------|
|
||||||
| icon | 左侧[图标名称](#/zh-CN/icon)或图片链接 | *string* | - |
|
|
||||||
| title | 左侧标题 | *number \| string* | - |
|
| title | 左侧标题 | *number \| string* | - |
|
||||||
| value | 右侧内容 | *number \| string* | - |
|
| value | 右侧内容 | *number \| string* | - |
|
||||||
| label | 标题下方的描述信息 | *string* | - |
|
| label | 标题下方的描述信息 | *string* | - |
|
||||||
| size | 单元格大小,可选值为 `large` | *string* | - |
|
| size | 单元格大小,可选值为 `large` | *string* | - |
|
||||||
|
| icon | 左侧[图标名称](#/zh-CN/icon)或图片链接 | *string* | - |
|
||||||
|
| icon-prefix `v2.5.3` | 图标类名前缀,同 Icon 组件的 [class-prefix 属性](#/zh-CN/icon#props) | *string* | `van-icon` |
|
||||||
| url | 点击后跳转的链接地址 | *string* | - |
|
| 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* | - |
|
||||||
| border | 是否显示内边框 | *boolean* | `true` |
|
| border | 是否显示内边框 | *boolean* | `true` |
|
||||||
@ -143,7 +144,6 @@ Vue.use(CellGroup);
|
|||||||
| title-class | 左侧标题额外类名 | *any* | - |
|
| title-class | 左侧标题额外类名 | *any* | - |
|
||||||
| value-class | 右侧内容额外类名 | *any* | - |
|
| value-class | 右侧内容额外类名 | *any* | - |
|
||||||
| label-class | 描述信息额外类名 | *any* | - |
|
| label-class | 描述信息额外类名 | *any* | - |
|
||||||
| icon-prefix `v2.5.3` | 图标类名前缀 | *string* | `van-icon` |
|
|
||||||
|
|
||||||
### Cell Events
|
### Cell Events
|
||||||
|
|
||||||
|
@ -116,12 +116,12 @@ Vue.use(GridItem);
|
|||||||
|------|------|------|------|
|
|------|------|------|------|
|
||||||
| text | Text | *string* | - |
|
| text | Text | *string* | - |
|
||||||
| icon | Icon name or URL | *string* | - |
|
| icon | Icon name or URL | *string* | - |
|
||||||
|
| icon-prefix `v2.5.3` | Icon className prefix | *string* | `van-icon` |
|
||||||
| dot `v2.2.1` | Whether to show red dot | *boolean* | `false` |
|
| dot `v2.2.1` | Whether to show red dot | *boolean* | `false` |
|
||||||
| info `v2.2.1` | Content of the badge | *number \| string* | - |
|
| info `v2.2.1` | Content of the badge | *number \| string* | - |
|
||||||
| url | Link URL | *string* | - |
|
| url | Link URL | *string* | - |
|
||||||
| to | Target route of the link, same as to of vue-router | *string \| object* | - |
|
| to | Target route of the link, same as to of vue-router | *string \| object* | - |
|
||||||
| replace | If true, the navigation will not leave a history record | *boolean* | `false` |
|
| replace | If true, the navigation will not leave a history record | *boolean* | `false` |
|
||||||
| icon-prefix `v2.5.3` | Icon className prefix | *string* | `van-icon` |
|
|
||||||
|
|
||||||
### GridItem Events
|
### GridItem Events
|
||||||
|
|
||||||
|
@ -134,12 +134,12 @@ Vue.use(GridItem);
|
|||||||
|------|------|------|------|
|
|------|------|------|------|
|
||||||
| text | 文字 | *string* | - |
|
| text | 文字 | *string* | - |
|
||||||
| icon | [图标名称](#/zh-CN/icon)或图片链接 | *string* | - |
|
| icon | [图标名称](#/zh-CN/icon)或图片链接 | *string* | - |
|
||||||
|
| icon-prefix `v2.5.3` | 图标类名前缀,同 Icon 组件的 [class-prefix 属性](#/zh-CN/icon#props) | *string* | `van-icon` |
|
||||||
| dot `v2.2.1` | 是否显示图标右上角小红点 | *boolean* | `false` |
|
| dot `v2.2.1` | 是否显示图标右上角小红点 | *boolean* | `false` |
|
||||||
| info `v2.2.1` | 图标右上角徽标的内容 | *number \| string* | - |
|
| info `v2.2.1` | 图标右上角徽标的内容 | *number \| string* | - |
|
||||||
| url | 点击后跳转的链接地址 | *string* | - |
|
| 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` |
|
| replace | 是否在跳转时替换当前页面历史 | *boolean* | `false` |
|
||||||
| icon-prefix `v2.5.3` | 图标类名前缀 | *string* | `van-icon` |
|
|
||||||
|
|
||||||
### GridItem Events
|
### GridItem Events
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@ import 'vant/lib/icon/local.css';
|
|||||||
| info | 图标右上角徽标的内容 | *number \| string* | - |
|
| info | 图标右上角徽标的内容 | *number \| string* | - |
|
||||||
| color | 图标颜色 | *string* | `inherit` |
|
| color | 图标颜色 | *string* | `inherit` |
|
||||||
| size | 图标大小,如 `20px` `2em`,默认单位为`px` | *number \| string* | `inherit` |
|
| size | 图标大小,如 `20px` `2em`,默认单位为`px` | *number \| string* | `inherit` |
|
||||||
| class-prefix | 类名前缀 | *string* | `van-icon` |
|
| class-prefix | 类名前缀,用于使用自定义图标 | *string* | `van-icon` |
|
||||||
| tag | HTML 标签 | *string* | `i` |
|
| tag | HTML 标签 | *string* | `i` |
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
@ -145,7 +145,7 @@ Toast.resetDefaultOptions('loading');
|
|||||||
| position | 位置,可选值为 `top` `bottom` | *string* | `middle` |
|
| position | 位置,可选值为 `top` `bottom` | *string* | `middle` |
|
||||||
| message | 文本内容,支持通过`\n`换行 | *string* | `''` | - |
|
| message | 文本内容,支持通过`\n`换行 | *string* | `''` | - |
|
||||||
| icon `v2.0.1` | 自定义图标,支持传入[图标名称](#/zh-CN/icon)或图片链接 | *string* | - |
|
| icon `v2.0.1` | 自定义图标,支持传入[图标名称](#/zh-CN/icon)或图片链接 | *string* | - |
|
||||||
| iconPrefix `v2.0.9` | 图标类名前缀 | *string* | `van-icon` |
|
| iconPrefix `v2.0.9` | 图标类名前缀,同 Icon 组件的 [class-prefix 属性](#/zh-CN/icon#props) | *string* | `van-icon` |
|
||||||
| overlay `v2.2.13` | 是否显示背景遮罩层 | *boolean* | `false` |
|
| overlay `v2.2.13` | 是否显示背景遮罩层 | *boolean* | `false` |
|
||||||
| forbidClick | 是否禁止背景点击 | *boolean* | `false` |
|
| forbidClick | 是否禁止背景点击 | *boolean* | `false` |
|
||||||
| closeOnClick `v2.1.5` | 是否在点击后关闭 | *boolean* | `false` |
|
| closeOnClick `v2.1.5` | 是否在点击后关闭 | *boolean* | `false` |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user