UNPKG

@arco-design/web-vue

Version:

Arco Design Vue 2.0: A Vue.js 3 UI Library

17 lines (16 loc) 451 B
import { TagProps } from '../tag'; import { FieldString } from '../_utils/types'; export interface TagData { value?: string | number; label?: string; closable?: boolean; tagProps?: TagProps; [other: string]: any; } export declare type InputTagFieldNames = FieldString<TagData>; export interface TagDataInfo extends TagData { raw: Record<string, unknown>; value: string | number; label: string; closable: boolean; }