From 6528c0d243fa038193edf07503241b5cfbdd714a Mon Sep 17 00:00:00 2001 From: Dev By Ray <6241164+devbyray@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:18:37 +0100 Subject: [PATCH] Update combobox.md The default value of `const value = ref({})` should contain a falsy value in order to show the "Select framework...". --- apps/www/src/content/docs/components/combobox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/src/content/docs/components/combobox.md b/apps/www/src/content/docs/components/combobox.md index b00f8653..d4cfaae9 100644 --- a/apps/www/src/content/docs/components/combobox.md +++ b/apps/www/src/content/docs/components/combobox.md @@ -50,7 +50,7 @@ const frameworks = [ ] const open = ref(false) -const value = ref({}) +const value = ref(null)