Skip to content

Cell 单元格

基础用法

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

html
<template>
  <ACell title="单元格" value="内容" />
  <ACell value="无标题内容" />
  <ACell icon="i-tabler-carrot" title="单元格" value="内容" label="描述信息" />
</template>
<template>
  <ACell title="单元格" value="内容" />
  <ACell value="无标题内容" />
  <ACell icon="i-tabler-carrot" title="单元格" value="内容" label="描述信息" />
</template>

卡片风格

通过 CellGroupinset 属性,可以将单元格转换为圆角卡片风格。

html
<template>
  <ACellGroup inset arrow divider>
    <ACell title="单元格" value="内容" />
    <ACell title="单元格" value="内容" />
    <ACell title="单元格" value="内容" />
  </ACellGroup>
</template>
<template>
  <ACellGroup inset arrow divider>
    <ACell title="单元格" value="内容" />
    <ACell title="单元格" value="内容" />
    <ACell title="单元格" value="内容" />
  </ACellGroup>
</template>

自定义

html
<template>
  <ACellGroup divider title="分组标题">
    <ACell icon="i-tabler-carrot" title="单元格" value="内容" label="描述信息" arrow />
    <ACell title="单元格">
      <template #icon>
        <i class="i-tabler-carrot" />
      </template>
      <template #value>
        <div>内容插槽</div>
      </template>
      <template #label>
        <div>描述信息插槽</div>
      </template>
      <template #right-icon>
        <i class="i-tabler-search" />
      </template>
    </ACell>
  </ACellGroup>
</template>
<template>
  <ACellGroup divider title="分组标题">
    <ACell icon="i-tabler-carrot" title="单元格" value="内容" label="描述信息" arrow />
    <ACell title="单元格">
      <template #icon>
        <i class="i-tabler-carrot" />
      </template>
      <template #value>
        <div>内容插槽</div>
      </template>
      <template #label>
        <div>描述信息插槽</div>
      </template>
      <template #right-icon>
        <i class="i-tabler-search" />
      </template>
    </ACell>
  </ACellGroup>
</template>

API

CellGroup Props

参数说明类型默认值
title分组标题string-
inset是否展示为圆角卡片风格`boolean_false
divider是否显示分割线booleanfalse

CellProps

参数说明类型默认值
title左侧标题string-
value右侧内容string-
label标题下方的描述信息string-
icon自定义图标类名string-
arrow是否显示右侧箭头并开启点击反馈booleanfalse
center是否使内容垂直居中booleanfalse
titleClass左侧标题额外类名string | Array | object-
valueClass右侧内容额外类名string | Array | object-
labelClass描述信息额外类名string | Array | object-

Cell Events

事件名说明回调参数
click点击时触发event: MouseEvent

CellGroup Slots

名称说明
default默认插槽

Cell Slots

名称说明
default默认插槽
icon自定义图标类名
title自定义左侧标题
value自定义右侧内容
label自定义描述信息
right-icon自定义右侧图标

MIT Licensed