UNPKG

vuux

Version:

Vue3 Nuxt3 Nuxt4 组件库

31 lines (30 loc) 1.21 kB
import { Props } from './types'; /** * 自定义组件属性 */ type __VLS_Props = Props; type __VLS_PublicProps = { modelValue: number | undefined; } & __VLS_Props; declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { blur: (...args: any[]) => void; focus: (...args: any[]) => void; input: (...args: any[]) => void; clear: (...args: any[]) => void; "update:modelValue": (value: number | undefined) => void; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onBlur?: ((...args: any[]) => any) | undefined; onFocus?: ((...args: any[]) => any) | undefined; onInput?: ((...args: any[]) => any) | undefined; "onUpdate:modelValue"?: ((value: number | undefined) => any) | undefined; onClear?: ((...args: any[]) => any) | undefined; }>, { max: string | number; placeholder: string; step: string | number; min: string | number; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { inputNumberEl: HTMLDivElement; inputEl: HTMLInputElement; }, HTMLDivElement>; export default _default;