diff --git a/components/lib/chips/Chips.d.ts b/components/lib/chips/Chips.d.ts index 9fc6a9e2e..bffd3a7d6 100755 --- a/components/lib/chips/Chips.d.ts +++ b/components/lib/chips/Chips.d.ts @@ -209,9 +209,18 @@ export interface ChipsSlots { */ removetokenicon(scope: { /** - * Remove icon click event + * Style class of the icon. */ - onClick(): void; + class: string; + /** + * Index of the token. + */ + index: number; + /** + * Remove token icon function. + * @param {Event} event - Browser event + */ + onClick(event: Event, index: number): void; }): VNode[]; } /** diff --git a/components/lib/chips/Chips.vue b/components/lib/chips/Chips.vue index 7ecdb5d24..c5df6f5c0 100755 --- a/components/lib/chips/Chips.vue +++ b/components/lib/chips/Chips.vue @@ -31,7 +31,7 @@ {{ val }} - +