0👍
✅
That’s because:
-
Your "hey" data is an Array of Strings not Object. "Hey" is not an Object with a property of ".text".
-
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
Source:stackexchange.com