mu-fake-input
Version:
vue3验证码输入框组件
24 lines (23 loc) • 858 B
TypeScript
interface ConfigType {
width?: number;
height?: number;
fontSize?: number;
spacing?: number;
}
export interface PropsType {
quantity?: number | string;
modelValue: string;
type?: "line" | "frame";
config?: ConfigType;
inputKeys?: "numeric" | "letter" | "all";
}
declare const _default: import("vue").DefineComponent<PropsType, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:modelValue": (...args: any[]) => void;
}, string, import("vue").PublicProps, Readonly<PropsType> & Readonly<{
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
}>, {
quantity: number | string;
type: "line" | "frame";
inputKeys: "numeric" | "letter" | "all";
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;