提交 | 用户 | 时间 | ||
820397 | 1 | import { FormSchema } from '@/types/form' |
H | 2 | |
3 | export interface PlaceholderModel { | |
4 | placeholder?: string | |
5 | startPlaceholder?: string | |
6 | endPlaceholder?: string | |
7 | rangeSeparator?: string | |
8 | } | |
9 | ||
10 | export type FormProps = { | |
11 | schema?: FormSchema[] | |
12 | isCol?: boolean | |
13 | model?: Recordable | |
14 | autoSetPlaceholder?: boolean | |
15 | isCustom?: boolean | |
16 | labelWidth?: string | number | |
17 | } & Recordable |