Removed unused classnames
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
<template>
|
||||
<div class="chip-container flex flex-wrap items-center border-0 border-b border-solid border-gray-50">
|
||||
<div v-for="(chip, i) in modelValue" :key="i" class="chip flex gap-2.5 items-center bg-cyan rounded py-1.5 px-2.5 m-1">
|
||||
<div class="flex flex-wrap items-center border-0 border-b border-solid border-gray-50">
|
||||
<div v-for="(chip, i) in modelValue" :key="i" class="flex gap-2.5 items-center bg-cyan rounded py-1.5 px-2.5 m-1">
|
||||
<span>{{ chip }}</span>
|
||||
<i class="delete-icon cursor-pointer text-white font-light font-default not-italic hover:text-gray-50" @click="deleteChip(i)">X</i>
|
||||
<i class="cursor-pointer text-white font-light font-default not-italic hover:text-gray-50" @click="deleteChip(i)">X</i>
|
||||
</div>
|
||||
<input class="outline-none border-none max-w-[250px] p-1 m-1 text-white" v-model="currentInput" @keyup.enter="saveChip" @keydown.delete="backspaceDelete" />
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user