I have these combobox
chips but there is a problem deletable-chips
<v-combobox v-model="selectedCategories" :items="attributeCategories" item-text="name" item-value="id" label="Category" multiple chips clear-icon="mdi-close-circle" deletable-chips v-on:change="changeCategory(selectedCategories)" ></v-combobox>
Is there a way to prevent specific chips from being deleted? For example, not showing a delete button on a specific button? Assume that for Device
and only Weather
and Geo Location
Instead of using the
v-chips
built-in deletion method. You can do this by customizing the@click:close
event. I created a working demo for you: