Cell
Intro
The cell is a single display item in the list.
Install
Register component globally via app.use, refer to Component Registration for more registration ways.
Usage
Basic Usage
Size
Left Icon
Value only
Link
Router
Group Title
Use Slots
Vertical Center
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 |
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 |
null |
| 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 |
string | Array | object |
- |
| title-class |
Title className |
string | Array | object |
- |
| value-class |
Value className |
string | Array | object |
- |
| label-class |
Label className |
string | Array | object |
- |
Cell Events
| Event |
Description |
Arguments |
| click |
Emitted when cell is clicked |
event: MouseEvent |
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 |
Less Variables
How to use: Custom Theme.
| Name |
Default Value |
Description |
| @cell-font-size |
@font-size-md |
- |
| @cell-line-height |
24px |
- |
| @cell-vertical-padding |
10px |
- |
| @cell-horizontal-padding |
@padding-md |
- |
| @cell-text-color |
@text-color |
- |
| @cell-background-color |
@white |
- |
| @cell-border-color |
@border-color |
- |
| @cell-active-color |
@active-color |
- |
| @cell-required-color |
@red |
- |
| @cell-label-color |
@gray-6 |
- |
| @cell-label-font-size |
@font-size-sm |
- |
| @cell-label-line-height |
@line-height-sm |
- |
| @cell-label-margin-top |
@padding-base |
- |
| @cell-value-color |
@gray-6 |
- |
| @cell-icon-size |
16px |
- |
| @cell-right-icon-color |
@gray-6 |
- |
| @cell-large-vertical-padding |
@padding-sm |
- |
| @cell-large-title-font-size |
@font-size-lg |
- |
| @cell-large-label-font-size |
@font-size-md |
- |
| @cell-group-background-color |
@white |
- |
| @cell-group-title-color |
@gray-6 |
- |
| @cell-group-title-padding |
@padding-md @padding-md @padding-xs |
- |
| @cell-group-title-font-size |
@font-size-md |
- |
| @cell-group-title-line-height |
16px |
- |