omega
omega

Reputation: 43833

How to stop select from opening when closing chip in vuetify?

For this example from vuetify.com

https://codepen.io/anon/pen/RqoxXY?&editors=101

autocomplete with chips, when I cancel a chip, how do I get it to not make the select menu open?

i tried @click.stop="..." but it doesn't work

on the chip event

Thanks

Upvotes: 2

Views: 2537

Answers (1)

Toodoo
Toodoo

Reputation: 8750

I found that if you remove box prop from your v-autocomplete, it won't open the menu when you remove a chips by clicking on the cross.

CodePen

Upvotes: 1

Related Questions