primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue) [ • 446 B
TypeScript
import { VNode } from 'vue';
interface ChipsProps {
modelValue?: any[];
max?: number;
addOnBlur?: boolean;
allowDuplicate?: boolean;
separator?: string;
}
declare class Chips {
$props: ChipsProps;
$emit(eventName: 'add', e: { originalEvent: Event, value: any }): this;
$emit(eventName: 'remove', e: { originalEvent: Event, value: any }): this;
$slots: {
chip: VNode[];
}
}
export default Chips;