mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(GridItem): add icon-color prop (#8753)
This commit is contained in:
parent
10daea86c5
commit
00d42df574
@ -24,6 +24,7 @@ export default defineComponent({
|
||||
icon: String,
|
||||
badge: [Number, String],
|
||||
iconPrefix: String,
|
||||
iconColor: String,
|
||||
}),
|
||||
|
||||
setup(props, { slots }) {
|
||||
@ -89,6 +90,7 @@ export default defineComponent({
|
||||
badge={props.badge}
|
||||
class={bem('icon')}
|
||||
classPrefix={props.iconPrefix}
|
||||
color={props.iconColor}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
@ -120,6 +120,7 @@ app.use(GridItem);
|
||||
| text | Text | _string_ | - |
|
||||
| icon | Icon name or URL | _string_ | - |
|
||||
| icon-prefix | Icon className prefix | _string_ | `van-icon` |
|
||||
| icon-color | Icon color | _string_ | - |
|
||||
| dot | Whether to show red dot | _boolean_ | `false` |
|
||||
| badge | Content of the badge | _number \| string_ | - |
|
||||
| url | Link URL | _string_ | - |
|
||||
|
@ -136,6 +136,7 @@ app.use(GridItem);
|
||||
| text | 文字 | _string_ | - |
|
||||
| icon | [图标名称](#/zh-CN/icon)或图片链接 | _string_ | - |
|
||||
| icon-prefix | 图标类名前缀,同 Icon 组件的 [class-prefix 属性](#/zh-CN/icon#props) | _string_ | `van-icon` |
|
||||
| icon-color | 图标颜色,同 Icon 组件的 [color 属性](#/zh-CN/icon#props) | _string_ | - |
|
||||
| dot | 是否显示图标右上角小红点 | _boolean_ | `false` |
|
||||
| badge | 图标右上角徽标的内容 | _number \| string_ | - |
|
||||
| url | 点击后跳转的链接地址 | _string_ | - |
|
||||
|
@ -32,6 +32,19 @@ test('should change icon size when using icon-size prop', () => {
|
||||
expect(wrapper.find('.van-grid-item__icon').style.fontSize).toEqual('10px');
|
||||
});
|
||||
|
||||
test('should change icon color when using icon-color prop', () => {
|
||||
const wrapper = mount({
|
||||
render() {
|
||||
return (
|
||||
<Grid>
|
||||
<GridItem icon="success" icon-color="red" />
|
||||
</Grid>
|
||||
);
|
||||
},
|
||||
});
|
||||
expect(wrapper.find('.van-grid-item__icon').style.color).toEqual('red');
|
||||
});
|
||||
|
||||
test('should render icon-slot correctly', () => {
|
||||
const wrapper = mount({
|
||||
render() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user