mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
56 lines (55 loc) • 2.11 kB
TypeScript
import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
import { Props, Slots } from './types';
import { InstallRecord, NameRecord } from '../types';
export declare const MeCell: {
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< Props> & Readonly<{
onClick?: ((e: MouseEvent) => any) | undefined;
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
click: (e: MouseEvent) => any;
}, PublicProps, {
title: string;
icon: string;
height: string;
bottom: boolean;
placeholder: string;
value: string | number;
iconColor: string;
arrow: boolean;
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
P: {};
B: {};
D: {};
C: {};
M: {};
Defaults: {};
}, Readonly< Props> & Readonly<{
onClick?: ((e: MouseEvent) => any) | undefined;
}>, {}, {}, {}, {}, {
title: string;
icon: string;
height: string;
bottom: boolean;
placeholder: string;
value: string | number;
iconColor: string;
arrow: boolean;
}>;
__isFragment?: never;
__isTeleport?: never;
__isSuspense?: never;
} & ComponentOptionsBase<Readonly< Props> & Readonly<{
onClick?: ((e: MouseEvent) => any) | undefined;
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
click: (e: MouseEvent) => any;
}, string, {
title: string;
icon: string;
height: string;
bottom: boolean;
placeholder: string;
value: string | number;
iconColor: string;
arrow: boolean;
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
$slots: Readonly< Slots> & Slots;
}) & InstallRecord & NameRecord;