vxe-design
Version:
A PC-based visual designer based on Vxe UI, used for building zero-code and low-code platforms
17 lines (14 loc) • 483 B
text/typescript
import { handleGetFormDesignWidgetName } from '../render/util'
import type { VxeGlobalRendererHandles } from '../../../types'
export interface WidgetVxeTextareaFormObjVO {
placeholder: string
}
export const getWidgetVxeTextareaConfig = (): VxeGlobalRendererHandles.CreateFormDesignWidgetConfigObj<WidgetVxeTextareaFormObjVO> => {
return {
title: handleGetFormDesignWidgetName,
icon: 'vxe-icon-textarea',
options: {
placeholder: ''
}
}
}