UNPKG

vuux

Version:

Vue3 Nuxt3 Nuxt4 组件库

16 lines (15 loc) 255 B
/** * Props */ export interface Props { modelValue: string; disabled?: boolean; is?: string; } /** * 组件事件类型 */ export type Emits = { (e: 'update:modelValue', value: string): void; (e: 'finish', value: string): void; };