# Grid ### Install ```js import Vue from 'vue'; import { Grid, GridItem } from 'vant'; Vue.use(Grid); Vue.use(GridItem); ``` ## Usage ### Basic Usage ```html ``` ### Column Num ```html ``` ### Custom Content ```html ``` ### Square ```html ``` ### Gutter ```html ``` ### Route ```html ``` ### Show Info ```html ``` ## API ### Grid Props | Attribute | Description | Type | Default | |------|------|------|------| | column-num `v2.0.4` | Column Num | *number* | `4` | | gutter | Gutter | *number \| string* | `0` | | border | Whether to show border | *boolean* | `true` | | center | Whether to center content | *boolean* | `true` | | square | Whether to be square shape | *boolean* | `false` | | clickable | Whether to show click feedback when clicked | *boolean* | `false` | | icon-size `v2.2.6` | Icon size | *number \| string* | `28px` | ### GridItem Props | Attribute | Description | Type | Default | |------|------|------|------| | text | Text | *string* | - | | icon | Icon name or URL | *string* | - | | dot `v2.2.1` | Whether to show red dot | *boolean* | `false` | | info `v2.2.1` | Content of the badge | *number \| string* | - | | url | Link URL | *string* | - | | 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` | ### GridItem Events | Event | Description | Arguments | |------|------|------| | click | Triggered when clicked | event: Event | ### GridItem Slots | Name | Description | |------|------| | default | Custom content | | icon | Custom icon | | text | Custom text |