Skip to content

Commit

Permalink
feat: make selectables clearable (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
hay-kot committed Oct 6, 2023
1 parent 1952b9f commit db16d3f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions frontend/components/Form/Autocomplete2.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@
class="w-full input input-bordered"
@change="search = $event.target.value"
/>
<button
v-if="!!value"
type="button"
class="absolute inset-y-0 right-6 flex items-center rounded-r-md px-2 focus:outline-none"
@click="clear"
>
<Icon name="mdi-close" class="w-5 h-5" />
</button>
<ComboboxButton class="absolute inset-y-0 right-0 flex items-center rounded-r-md px-2 focus:outline-none">
<Icon name="mdi-chevron-down" class="w-5 h-5" />
</ComboboxButton>
Expand Down Expand Up @@ -86,6 +94,10 @@
multiple: false,
});
function clear() {
emit("update:modelValue", null);
}
const search = ref("");
const value = useVModel(props, "modelValue", emit);
Expand Down

0 comments on commit db16d3f

Please sign in to comment.