mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
34 lines (33 loc) • 1.28 kB
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;
} & {
click: () => any;
input: (e: Event) => any;
search: () => any;
blur: (e: FocusEvent) => any;
change: (e: Event) => any;
focus: (e: FocusEvent) => any;
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
onClick?: (() => any) | undefined;
onInput?: ((e: Event) => any) | undefined;
onSearch?: (() => any) | undefined;
onBlur?: ((e: FocusEvent) => any) | undefined;
onChange?: ((e: Event) => any) | undefined;
onFocus?: ((e: FocusEvent) => any) | undefined;
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
}>, {
color: string;
disabled: boolean;
radius: string;
placeholder: string;
background: string;
btnText: string;
align: "left" | "center" | "right" | "justify" | "inherit";
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
export default _default;