vxe-pc-ui
Version:
A vue based PC component library
19 lines (15 loc) • 504 B
text/typescript
import { handleGetFormDesignWidgetName } from '../render/util'
import type { VxeGlobalRendererHandles } from '../../../types'
export interface WidgetSubtableFormObjVO {
showCheckbox: boolean
}
export const getWidgetSubtableConfig = (): VxeGlobalRendererHandles.CreateFormDesignWidgetConfigObj<WidgetSubtableFormObjVO> => {
return {
title: handleGetFormDesignWidgetName,
group: 'layout',
icon: 'vxe-icon-subtable',
options: {
showCheckbox: false
}
}
}