UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

14 lines (13 loc) 389 B
import { type VNode } from 'vue'; export interface CChipSetItem { /** * The value that identifies the chip and tracks its selection. */ value: string; /** * The chip content. Falls back to `value` when omitted. */ label?: string | object; [key: string]: unknown; } export declare const chipsFromData: (items?: (string | CChipSetItem)[]) => VNode[];