mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
54 lines (53 loc) • 2.25 kB
TypeScript
import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
import { Props } from './types';
import { InstallRecord, NameRecord } from '../types';
export declare const MeAddressPicker: {
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{
modelValue?: string;
} & Props> & Readonly<{
onCancel?: (() => any) | undefined;
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
onSure?: ((currentValue: string[]) => any) | undefined;
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
"update:modelValue": (value: string) => any;
} & {
cancel: () => any;
sure: (currentValue: string[]) => any;
}, PublicProps, {
visible: boolean;
separator: string;
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
P: {};
B: {};
D: {};
C: {};
M: {};
Defaults: {};
}, Readonly<{
modelValue?: string;
} & Props> & Readonly<{
onCancel?: (() => any) | undefined;
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
onSure?: ((currentValue: string[]) => any) | undefined;
}>, {}, {}, {}, {}, {
visible: boolean;
separator: string;
}>;
__isFragment?: never;
__isTeleport?: never;
__isSuspense?: never;
} & ComponentOptionsBase<Readonly<{
modelValue?: string;
} & Props> & Readonly<{
onCancel?: (() => any) | undefined;
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
onSure?: ((currentValue: string[]) => any) | undefined;
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
"update:modelValue": (value: string) => any;
} & {
cancel: () => any;
sure: (currentValue: string[]) => any;
}, string, {
visible: boolean;
separator: string;
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & InstallRecord & NameRecord;