Skip to content

Commit

Permalink
docs: fix tags input with combobox demo
Browse files Browse the repository at this point in the history
zernonia committed Jan 30, 2025
1 parent 587559a commit 74e7dc0
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/components/demo/TagsInputCombobox/css/index.vue
Original file line number Diff line number Diff line change
@@ -21,8 +21,8 @@ watch(values, () => {
>
<ComboboxAnchor class="w-[400px] inline-flex items-center justify-between rounded-lg p-2 text-[13px] leading-none gap-[5px] bg-white text-grass11 shadow-[0_2px_10px] shadow-black/10 hover:bg-mauve3 focus:shadow-[0_0_0_2px] focus:shadow-black data-[placeholder]:text-grass9 outline-none">
<TagsInputRoot
v-slot="{ values: tags }"
:model-value="values"
v-slot="{ modelValue: tags }"
v-model="values"
delimiter=""
class="flex gap-2 items-center rounded-lg flex-wrap"
>
2 changes: 1 addition & 1 deletion docs/components/demo/TagsInputCombobox/tailwind/index.vue
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ watch(values, () => {
<ComboboxAnchor class="w-[400px] inline-flex items-center justify-between rounded-lg p-2 text-[13px] leading-none gap-[5px] bg-white text-grass11 shadow-[0_2px_10px] shadow-black/10 hover:bg-mauve3 focus:shadow-[0_0_0_2px] focus:shadow-black data-[placeholder]:text-grass9 outline-none">
<TagsInputRoot
v-slot="{ modelValue: tags }"
:model-value="values"
v-model="values"
delimiter=""
class="flex gap-2 items-center rounded-lg flex-wrap"
>

0 comments on commit 74e7dc0

Please sign in to comment.