Skip to content

Cell单元格

介绍

单元格为列表中的单个展示项。

按需引入

将components目录下easy-cell-groupeasy-cell组件复制到你的项目conponents目录。easy-cell组件依赖easy-icon组件,也需要将该组件引入。
easy-cell可以单独使用,如果不需要easy-cell-group可以不引入。

代码演示

基础用法

Cell可以单独使用,也可以与CellGroup搭配使用,CellGroup可以为Cell提供上下外边框。

html
<easy-cell-group>
  <easy-cell title="单元格" value="内容" />
  <easy-cell title="单元格" value="内容" label="描述信息" />
</easy-cell-group>
<easy-cell-group>
  <easy-cell title="单元格" value="内容" />
  <easy-cell title="单元格" value="内容" label="描述信息" />
</easy-cell-group>

展示图标

通过 icon 属性在标题左侧展示图标。

html
<easy-cell title="单元格" icon="location-o" />
<easy-cell title="单元格" icon="location-o" />

展示箭头

设置 is-link 属性后会在单元格右侧显示箭头,并且可以通过 arrow-direction 属性控制箭头方向。

html
<easy-cell title="单元格" :is-link="true" />
<easy-cell title="单元格" :is-link="true" value="内容" />
<easy-cell title="单元格" :is-link="true" arrow-direction="down" value="内容" />
<easy-cell title="单元格" :is-link="true" />
<easy-cell title="单元格" :is-link="true" value="内容" />
<easy-cell title="单元格" :is-link="true" arrow-direction="down" value="内容" />

API

Cell Props

参数说明类型默认值
title左侧标题string-
value右侧内容string-
label标题下方的描述信息string-
icon左侧图标名称或图片链接,等同于Icon组件的name属性string-
is-link是否展示右侧箭头并开启点击反馈booleanfalse
arrow-direction箭头方向,可选值为 left up downstringright

Released under the MIT License.