keep-vue
Version:
Keep Vue is an open-source component library built on top of Vue3 and Tailwind CSS. It offers a collection of pre-designed UI components and styles that you can easily integrate into your web applications.
19 lines (18 loc) • 872 B
TypeScript
import type { InputHTMLAttributes } from "vue";
import type { ClassProps } from "../../utils/interface";
export interface InputProps extends /* @vue-ignore */ InputHTMLAttributes {
type?: string;
defaultValue?: string | number;
placeholder: string;
modelValue?: string | number;
}
declare const _default: import("vue").DefineComponent<InputProps & ClassProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
"update:modelValue": (payload: string | number) => any;
}, string, import("vue").PublicProps, Readonly<InputProps & ClassProps> & Readonly<{
"onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
}>, {
type: string;
modelValue: string | number;
class: any;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;