# Cell ### Install ```js import Vue from 'vue'; import { Cell, CellGroup } from 'vant'; Vue.use(Cell); Vue.use(CellGroup); ``` ## Usage ### Basic Usage ```html ``` ### Size ```html ``` ### Left Icon ```html ``` ### Value only ```html ``` ### Link ```html ``` ### Router ```html ``` ### Group Title ```html ``` ### Use Slots ```html ``` ### Vertical Center ```html ``` ## API ### CellGroup Props | Attribute | Description | Type | Default | | --------- | ---------------------------- | --------- | ------- | | title | Group title | _string_ | - | | border | Whether to show outer border | _boolean_ | `true` | ### Cell Props | Attribute | Description | Type | Default | | --- | --- | --- | --- | | title | Title | _number \| string_ | - | | value | Right text | _number \| string_ | - | | label | Description below the title | _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` | | center | Whether to center content vertically | _boolean_ | `true` | | 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` | | clickable | Whether to show click feedback when clicked | _boolean_ | `false` | | is-link | Whether to show link icon | _boolean_ | `false` | | required | Whether to show required mark | _boolean_ | `false` | | arrow-direction | Can be set to `left` `up` `down` | _string_ | `right` | | title-style | Title style | _any_ | - | | title-class | Title className | _any_ | - | | value-class | Value className | _any_ | - | | label-class | Label className | _any_ | - | ### Cell Events | Event | Description | Arguments | | ----- | ------------------------- | -------------- | | click | Triggered when click cell | _event: Event_ | ### CellGroup Slots | Name | Description | | ------- | ------------ | | default | Default slot | | title | Custom title | ### Cell Slots | Name | Description | | ---------- | --------------------------------- | | default | Custom value | | icon | Custom icon | | title | Custom title | | label | Custom label | | right-icon | Custom right icon | | extra | Custom extra content on the right |