我有這些 combobox
晶片,但有一個問題 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>
有沒有辦法防止特定晶片被刪除?例如,不在特定的按鈕上顯示刪除按鈕?假設對於 Device
且只允許刪除 Weather
和 Geo Location
而不是使用
v-chips
內建的刪除方法。您可以透過自訂@click:close
事件來實現。我為您創建了一個工作演示: