Skip to content
目录

单元格

箭头支持隐藏

vue
<template>
  <jp-cell title="我的收藏"></jp-cell>
  <jp-cell title="我的设置" :show-arrow="false"></jp-cell>
</template>

分割线支持隐藏

vue
<template>
  <jp-cell title="我的收藏" :show-line="false"></jp-cell>
  <jp-cell title="我的设置" :show-line="false"></jp-cell>
</template>

支持 slot

vue
<template>
  <jp-cell title="我的收藏">
    <text style="margin-left: 10px; font-size: 12px; color: #ccc">我是描述</text>
  </jp-cell>
  <jp-cell title="我的设置">
    <text style="margin-left: 10px; font-size: 12px; color: #ccc">我是描述</text>
  </jp-cell>
</template>

支持箭头颜色设置

vue
<template>
  <jp-cell title="我的收藏" arrow-color="red"></jp-cell>
  <jp-cell title="我的设置" arrow-color="blue"></jp-cell>
</template>

水波纹

vue
<template>
  <jp-cell title="我的收藏" :ripple="false"></jp-cell>
</template>

props

属性名类型默认值描述
titleString''title 名称
showArrowBooleantrue是否显示箭头
showLineBooleantrue是否显示分割线
rippleBooleantrue是否开启水波纹效果
arrowColorString''箭头颜色
点击事件名
cell-click

©2022 By 绝配移动端组件库