UNPKG

@maxpike/vue

Version:

Vue VariantJS: Fully configurable Vue 3 components styled with TailwindCSS

9 lines (6 loc) 277 B
import { Data, WithVariantProps } from '@variantjs/core'; import { InputHTMLAttributes } from 'vue'; export type TInputValue = string | number | string[] | undefined; export type TInputOptions = WithVariantProps<{ modelValue?: TInputValue, } & InputHTMLAttributes & Data>;