docs(Grid): fix reverse prop (#10437)

This commit is contained in:
neverland 2022-03-26 11:15:04 +08:00 committed by GitHub
parent 9414c38154
commit 66cb711066
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -112,6 +112,7 @@ app.use(GridItem);
| square | Whether to be square shape | _boolean_ | `false` | | square | Whether to be square shape | _boolean_ | `false` |
| clickable | Whether to show click feedback when clicked | _boolean_ | `false` | | clickable | Whether to show click feedback when clicked | _boolean_ | `false` |
| direction | Content arrangement direction, can be set to `horizontal` | _string_ | `vertical` | | direction | Content arrangement direction, can be set to `horizontal` | _string_ | `vertical` |
| reverse `v3.1.0` | Whether to reverse the position of icon and text | _boolean_ | `false` |
### GridItem Props ### GridItem Props
@ -121,7 +122,6 @@ app.use(GridItem);
| icon | Icon name or URL | _string_ | - | | icon | Icon name or URL | _string_ | - |
| icon-prefix | Icon className prefix | _string_ | `van-icon` | | icon-prefix | Icon className prefix | _string_ | `van-icon` |
| icon-color | Icon color | _string_ | - | | icon-color | Icon color | _string_ | - |
| reverse `v3.1.0` | Whether to reverse the position of icon and text | _boolean_ | `false` |
| dot | Whether to show red dot | _boolean_ | `false` | | dot | Whether to show red dot | _boolean_ | `false` |
| badge | Content of the badge | _number \| string_ | - | | badge | Content of the badge | _number \| string_ | - |
| badge-props `v3.2.8` | Props of Badgesee [Badge - props](#/en-US/badge#props) | _BadgeProps_ | - | | badge-props `v3.2.8` | Props of Badgesee [Badge - props](#/en-US/badge#props) | _BadgeProps_ | - |

View File

@ -128,6 +128,7 @@ app.use(GridItem);
| square | 是否将格子固定为正方形 | _boolean_ | `false` | | square | 是否将格子固定为正方形 | _boolean_ | `false` |
| clickable | 是否开启格子点击反馈 | _boolean_ | `false` | | clickable | 是否开启格子点击反馈 | _boolean_ | `false` |
| direction | 格子内容排列的方向,可选值为 `horizontal` | _string_ | `vertical` | | direction | 格子内容排列的方向,可选值为 `horizontal` | _string_ | `vertical` |
| reverse `v3.1.0` | 是否调换图标和文本的位置 | _boolean_ | `false` |
### GridItem Props ### GridItem Props
@ -137,7 +138,6 @@ app.use(GridItem);
| icon | 图标名称或图片链接,等同于 Icon 组件的 [name 属性](#/zh-CN/icon#props) | _string_ | - | | icon | 图标名称或图片链接,等同于 Icon 组件的 [name 属性](#/zh-CN/icon#props) | _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-color | 图标颜色,等同于 Icon 组件的 [color 属性](#/zh-CN/icon#props) | _string_ | - | | icon-color | 图标颜色,等同于 Icon 组件的 [color 属性](#/zh-CN/icon#props) | _string_ | - |
| reverse `v3.1.0` | 是否调换图标和文本的位置 | _boolean_ | `false` |
| dot | 是否显示图标右上角小红点 | _boolean_ | `false` | | dot | 是否显示图标右上角小红点 | _boolean_ | `false` |
| badge | 图标右上角徽标的内容 | _number \| string_ | - | | badge | 图标右上角徽标的内容 | _number \| string_ | - |
| badge-props `v3.2.8` | 自定义徽标的属性,传入的对象会被透传给 [Badge 组件的 props](#/zh-CN/badge#props) | _BadgeProps_ | - | | badge-props `v3.2.8` | 自定义徽标的属性,传入的对象会被透传给 [Badge 组件的 props](#/zh-CN/badge#props) | _BadgeProps_ | - |