/*! For license information please see 4628.3d9c325e.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["4628"],{31793:function(t,s,n){"use strict";n.r(s);var a=n("80681");let l=["innerHTML"];s.default={setup:()=>({html:""}),render:()=>((0,a.wg)(),(0,a.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

Cell

\n

Intro

\n

The cell is a single display item in the list.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { Cell, CellGroup } from 'vant';\n\nconst app = createApp();\napp.use(Cell);\napp.use(CellGroup);\n
\n

Usage

\n

Basic Usage

\n
<van-cell-group>\n  <van-cell title="Cell title" value="Content" />\n  <van-cell title="Cell title" value="Content" label="Description" />\n</van-cell-group>\n
\n

Inset Grouped

\n
<van-cell-group inset>\n  <van-cell title="Cell title" value="Content" />\n  <van-cell title="Cell title" value="Content" label="Description" />\n</van-cell-group>\n
\n

Size

\n
<van-cell-group>\n  <van-cell title="Cell title" value="Content" size="large" />\n  <van-cell\n    title="Cell title"\n    value="Content"\n    size="large"\n    label="Description"\n  />\n</van-cell-group>\n
\n

Left Icon

\n
<van-cell-group>\n  <van-cell title="Cell title" icon="location-o" />\n</van-cell-group>\n
\n
\n
<van-cell-group>\n  <van-cell title="Cell title" is-link />\n  <van-cell title="Cell title" is-link value="Content" />\n  <van-cell title="Cell title" is-link arrow-direction="down" value="Content" />\n</van-cell-group>\n
\n

Router

\n
<van-cell-group>\n  <van-cell title="URL" is-link url="https://github.com" />\n  <van-cell title="Vue Router" is-link to="index" />\n</van-cell-group>\n
\n

Group Title

\n
<van-cell-group title="Group 1">\n  <van-cell title="Cell title" value="Content" />\n</van-cell-group>\n<van-cell-group title="Group 2">\n  <van-cell title="Cell title" value="Content" />\n</van-cell-group>\n
\n

Use Slots

\n
<van-cell value="Content" is-link>\n  <!-- Use the title slot to customize the title -->\n  <template #title>\n    <span class="custom-title">Title</span>\n    <van-tag type="primary">Tag</van-tag>\n  </template>\n</van-cell>\n\n<van-cell title="Title" icon="shop-o">\n  <!-- Use the right-icon slot to customize the right icon -->\n  <template #right-icon>\n    <van-icon name="search" class="search-icon" />\n  </template>\n</van-cell>\n\n<style>\n  .custom-title {\n    margin-right: 4px;\n    vertical-align: middle;\n  }\n\n  .search-icon {\n    font-size: 16px;\n    line-height: inherit;\n  }\n</style>\n
\n

Vertical Center

\n
<van-cell center title="Cell title" value="Content" label="Description" />\n
\n

API

\n

CellGroup Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
titleGroup titlestring-
insetWhether to be inset groupedbooleanfalse
borderWhether to show outer borderbooleantrue
\n

Cell Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
titleTitlenumber | string-
valueRight textnumber | string-
labelDescription below the titlenumber | string-
sizeSize, can be set to large normalstring-
iconLeft Iconstring-
icon-prefixIcon className prefixstringvan-icon
tagCustom element tagstringdiv
urlLink URLstring-
toThe target route should navigate to when clicked on, same as the to prop of Vue Routerstring | object-
replaceIf true, the navigation will not leave a history recordbooleanfalse
borderWhether to show inner borderbooleantrue
centerWhether to center content verticallybooleanfalse
clickableWhether to show click feedback when clickedbooleannull
is-linkWhether to show link iconbooleanfalse
requiredWhether to show required markbooleanfalse
arrow-directionCan be set to left up downstringright
title-styleTitle stylestring | Array | object-
title-classTitle classNamestring | Array | object-
value-classValue classNamestring | Array | object-
label-classLabel classNamestring | Array | object-
\n

Cell Events

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionArguments
clickEmitted when cell is clickedevent: MouseEvent
\n

CellGroup Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
defaultDefault slot
titleCustom title
\n

Cell Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
titleCustom title
valueCustom value
labelCustom label
iconCustom left icon
right-iconCustom right icon
extraCustom extra content on the right
\n

Types

\n

The component exports the following type definitions:

\n
import type {\n  CellSize,\n  CellProps,\n  CellGroupProps,\n  CellArrowDirection,\n} from 'vant';\n
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-cell-font-sizevar(--van-font-size-md)-
--van-cell-line-height24px-
--van-cell-vertical-padding10px-
--van-cell-horizontal-paddingvar(--van-padding-md)-
--van-cell-text-colorvar(--van-text-color)-
--van-cell-backgroundvar(--van-background-2)-
--van-cell-border-colorvar(--van-border-color)-
--van-cell-active-colorvar(--van-active-color)-
--van-cell-required-colorvar(--van-danger-color)-
--van-cell-label-colorvar(--van-text-color-2)-
--van-cell-label-font-sizevar(--van-font-size-sm)-
--van-cell-label-line-heightvar(--van-line-height-sm)-
--van-cell-label-margin-topvar(--van-padding-base)-
--van-cell-value-colorvar(--van-text-color-2)-
--van-cell-value-font-sizeinherit-
--van-cell-icon-size16px-
--van-cell-right-icon-colorvar(--van-gray-6)-
--van-cell-large-vertical-paddingvar(--van-padding-sm)-
--van-cell-large-title-font-sizevar(--van-font-size-lg)-
--van-cell-large-label-font-sizevar(--van-font-size-md)-
--van-cell-large-value-font-sizeinherit-
--van-cell-group-backgroundvar(--van-background-2)-
--van-cell-group-title-colorvar(--van-text-color-2)-
--van-cell-group-title-paddingvar(--van-padding-md) var(--van-padding-md) var(--van-padding-xs)-
--van-cell-group-title-font-sizevar(--van-font-size-md)-
--van-cell-group-title-line-height16px-
--van-cell-group-inset-padding0 var(--van-padding-md)-
--van-cell-group-inset-radiusvar(--van-radius-lg)-
--van-cell-group-inset-title-paddingvar(--van-padding-md) var(--van-padding-md) var(--van-padding-xs) var(--van-padding-xl)-
\n
'},null,8,l))}}}]);