mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
23 lines (22 loc) • 910 B
TypeScript
import { Props } from './types';
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
type __VLS_Props = Props;
type __VLS_PublicProps = {
modelValue?: string;
} & __VLS_Props;
declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
"update:modelValue": (value: string) => any;
} & {
cancel: () => any;
sure: (arr: number[]) => any;
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
onCancel?: (() => any) | undefined;
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
onSure?: ((arr: number[]) => any) | undefined;
}>, {
type: "date" | "year-month" | "month-day" | "time" | "datetime";
visible: boolean;
minDate: Date;
maxDate: Date;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
export default _default;