UNPKG

vuux

Version:

Vue3 Nuxt3 Nuxt4 组件库

21 lines (20 loc) 299 B
/** * props */ export interface Props { modelValue: MapItem[]; } /** * MapItem类型 */ export interface MapItem { id: number | string; key: string; value: string; } /** * 组件事件类型 */ export type Emits = { (event: 'update:modelValue', value: MapItem[]): void; };