mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
29 lines (28 loc) • 1.1 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;
} & {
input: (e: Event) => any;
blur: (e: FocusEvent) => any;
change: (e: Event) => any;
focus: (e: FocusEvent) => any;
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
onInput?: ((e: Event) => any) | undefined;
onBlur?: ((e: FocusEvent) => any) | undefined;
onChange?: ((e: Event) => any) | undefined;
onFocus?: ((e: FocusEvent) => any) | undefined;
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
}>, {
disabled: boolean;
placeholder: string;
readonly: boolean;
maxlength: number;
rows: number;
showCount: boolean;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
export default _default;