Skip to content

Cell

Cells are used to group information and actions for a single subject.

Basic Usage

The title attribute sets the left title of the cell, and the value attribute sets the right content of the cell.

html
<wd-cell title="Title" value="Content"></wd-cell>

Icon

The icon attribute sets the icon class name on the left side of the cell.

html
<wd-cell title="Title" value="Content" icon="setting"></wd-cell>

Large Size

The size attribute can be set to large to increase the cell height.

html
<wd-cell title="Title" value="Content" size="large"></wd-cell>

Groups

Cells can be grouped using the wd-cell-group component.

html
<wd-cell-group title="Group 1">
  <wd-cell title="Title" value="Content"></wd-cell>
  <wd-cell title="Title" value="Content"></wd-cell>
</wd-cell-group>
<wd-cell-group title="Group 2">
  <wd-cell title="Title" value="Content"></wd-cell>
  <wd-cell title="Title" value="Content"></wd-cell>
</wd-cell-group>

Custom Content

The cell component provides three slots: default slot, title slot, and icon slot, which can be used to customize the content.

html
<wd-cell title="Title">
  <view>Custom Content</view>
</wd-cell>
html
<wd-cell value="Content">
  <view slot="title">
    <view>Title</view>
    <view style="margin-top: 5px; font-size: 12px; color: #999;">Subtitle</view>
  </view>
</wd-cell>
html
<wd-cell title="Title" value="Content">
  <view slot="icon" class="custom-icon"></view>
</wd-cell>

Clickable

The clickable attribute sets whether the cell is clickable. If set to true, the cell will have a click effect and a right arrow will be displayed.

html
<wd-cell title="Title" value="Content" clickable></wd-cell>

The is-link attribute sets whether the cell is a link. If set to true, a right arrow will be displayed. The link-type attribute sets the link type, which can be navigateTo, redirectTo, reLaunch, switchTab. The url attribute sets the link path.

html
<wd-cell title="Title" value="Content" is-link url="/pages/index/index" link-type="switchTab"></wd-cell>

Vertical Alignment

The center attribute sets whether the left and right content of the cell is vertically centered.

html
<wd-cell title="Title" value="Content" center></wd-cell>

Cell Group Attributes

AttributeDescriptionTypeDefaultVersion
titleGroup titlestring--
valueGroup valuestring--
borderWhether to show the outer borderbooleantrue-

Cell Attributes

AttributeDescriptionTypeDefaultVersion
titleLeft titlestring--
valueRight contentstring--
iconLeft icon class name, see Icon component for optional valuesstring--
icon-prefixIcon class name prefix, same as Icon componentstring'wd-icon'-
labelDescription below the titlestring--
is-linkWhether to show the right arrow and click effectbooleanfalse-
clickableWhether to show the click effectbooleanfalse-
link-typeLink type, can be 'navigateTo', 'redirectTo', 'reLaunch', 'switchTab'stringnavigateTo-
urlLink path, valid when is-link is truestring--
toRoute object, same as the to attribute of vue-router, valid when is-link is truestring / object--
replaceIf true, the navigation will not leave a history record, valid when is-link is truebooleanfalse-
sizeCell size, can be 'large'string--
title-widthTitle width, with unitstring--
centerWhether to vertically center the left and right contentbooleanfalse-
requiredWhether to show the required asteriskbooleanfalse-
onWhether to show the on icon on the rightbooleanfalse-
borderedWhether to show the bottom borderbooleantrue-
center-titleWhether to center the titlebooleanfalse0.1.1

Cell Events

Event NameDescriptionParametersVersion
clickTriggered when the cell is clickedevent: Event-

Cell Slots

NameDescriptionVersion
titleCustom title-
iconCustom icon-
labelCustom label-
defaultCustom right content-

Cell Group Slots

NameDescriptionVersion
defaultDefault slot-
valueCustom value slot-

Cell External Style Classes

Class NameDescriptionVersion
custom-classRoot node custom class-
custom-label-classLabel custom class-
custom-value-classValue custom class-
custom-title-classTitle custom class-

Cell Group External Style Classes

Class NameDescriptionVersion
custom-classRoot node custom class-
custom-title-classTitle custom class-

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.