Files
mini-yu/uni_modules/tdesign-uniapp/components/swipe-cell/props.ts
lingxiao865 c5af079d8c first commit
2026-02-10 08:05:03 +08:00

40 lines
1.3 KiB
TypeScript

/* eslint-disable */
/**
* 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC
* */
import type { TdSwipeCellProps } from './type';
export default {
/** 是否禁用滑动 */
disabled: Boolean,
/** 左侧滑动操作项。所有行为同 `right` */
left: {
type: Array,
},
/** 操作项是否呈现为打开态,值为数组时表示分别控制左右滑动的展开和收起状态 */
opened: {
type: [Boolean, Array],
default: false as TdSwipeCellProps['opened'],
},
/** 右侧滑动操作项。有两种定义方式,一种是使用数组,二种是使用插槽。`right.text` 表示操作文本,`right.className` 表示操作项类名,`right.style` 表示操作项样式,`right.onClick` 表示点击操作项后执行的回调函数。示例:`[{ text: '删除', icon: 'delete', style: 'background-color: red', onClick: () => {} }]` */
right: {
type: Array,
},
/** 操作项点击时触发(插槽写法组件不触发,业务侧自定义内容和事件) */
onClick: {
type: Function,
default: () => ({}),
},
/** 滑动结束事件 */
onDragend: {
type: Function,
default: () => ({}),
},
/** 滑动开始事件 */
onDragstart: {
type: Function,
default: () => ({}),
},
};