How do I modify the behavior of clicking close on a chip? Would it be click.native or click.stop?
For example, I am using chips to define search filters, and by closing the chip, I want to update the filter.
Thanks
Chips will emit an input event when closed. So you can do something like <v-chip close @input="doStuff">
In the future, please direct any questions to gitter.
Oh, okay, will do. Thanks!
Most helpful comment
Chips will emit an input event when closed. So you can do something like
<v-chip close @input="doStuff">
In the future, please direct any questions to gitter.