|
|
@@ -68,11 +68,13 @@ export interface VbFormItem {
|
|
|
tipsIcon?: string // 默认值 bi bi-question-circle-fill
|
|
|
tipsIconClass?: string // 默认值 text-muted
|
|
|
prepend: string | "slot" | "Slot" | "icon" | "Icon"
|
|
|
- prependIcon?: string // prepend 为 el-button 中 icon 时显示的图标 默认值:Search
|
|
|
+ prependIcon?: string // prepend 为 el-button 中 icon 时显示的图标 默认值:bi bi-search text-primary
|
|
|
prependClickFunc?: (v: any) => void
|
|
|
+ prependDisabled?: boolean | ((v: any) => boolean)
|
|
|
append: string | "slot" | "Slot" | "icon" | "Icon"
|
|
|
- appendIcon?: string // append 为 el-button 中 icon 时显示的图标 默认值:Search
|
|
|
+ appendIcon?: string // append 为 el-button 中 icon 时显示的图标 默认值:bi bi-search text-primary
|
|
|
appendClickFunc?: (v: any) => void
|
|
|
+ appendDisabled?: boolean | ((v: any) => boolean)
|
|
|
}
|
|
|
|
|
|
export interface VbFormRowItem {
|