[Vuejs]-V-chip values don't appear after clicking dropdown values and chip close doesn't close

0👍

That’s because:

  1. Your "hey" data is an Array of Strings not Object. "Hey" is not an Object with a property of ".text".

  2. You ommitted the :close event for closing the chip – Reference: https://vuetifyjs.com/en/api/v-chip/#events-click:close

Here’s the fix you need for both of them

<v-chip :disabled="loading" close @click:close="del(el, i)">
  <v-icon left v-text="el.icon"></v-icon>
  {{ el }}
</v-chip>

Cheers

Leave a comment