i have a simple v-combobox where i can select/deselect multiple items from a list of object.
<div id="app">
<v-app>
<v-layout column>
<v-form v-model="valid">
<v-combobox
v-model="selectedItems"
item-text="name"
item-value="id"
:items="itemsList"
label="Items"
multiple
clerable
persistent-hint
chips>
</v-combobox>
<div>{{selectedItems}}</div>
</v-form>
</v-layout>
</v-app>
</div>
https://codepen.io/anon/pen/pYjZaN The problem is when i write a search string in the field and then click outside i get a chip with it instead of just doing nothing. It looks like it depend on v-form, removing it everything will work fine. Anyone know how to deal with this?