mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
21 lines (20 loc) • 853 B
TypeScript
import { Props, ListItem } from './types';
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
type __VLS_Props = Props;
type __VLS_PublicProps = {
'visible'?: boolean;
} & __VLS_Props;
declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
"update:visible": (value: boolean) => any;
} & {
cancel: (e: MouseEvent) => any;
change: (e: ListItem) => any;
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
onCancel?: ((e: MouseEvent) => any) | undefined;
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
onChange?: ((e: ListItem) => any) | undefined;
}>, {
visible: boolean;
tips: string;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
export default _default;