gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
24 lines (23 loc) • 1.19 kB
TypeScript
import { type FormPlainProps, type FormPlainSlots } from './common';
type __VLS_Slots = FormPlainSlots;
declare const __VLS_component: import("vue").DefineComponent<FormPlainProps, {
validate: (nameList?: import("../form/common").FieldName[]) => Promise<void>;
reset: (nameList?: import("../form/common").FieldName[]) => Promise<void>;
clearValidate: (nameList?: import("../form/common").FieldName[]) => Promise<void>;
scrollToField: (name: import("../form/common").FieldName) => void;
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<FormPlainProps> & Readonly<{}>, {
direction: "horizontal" | "vertical";
labelAlign: "start" | "center" | "end";
labelValign: "start" | "center" | "end";
starPosition: "left" | "right";
validateOnRuleChange: boolean;
showError: boolean;
scrollDuration: number;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};