Update combobox.md

The default value of `const value = ref({})` should contain a falsy value in order to show the "Select framework...".
This commit is contained in:
Dev By Ray 2024-03-21 10:18:37 +01:00 committed by GitHub
parent d34c620055
commit 6528c0d243
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,7 +50,7 @@ const frameworks = [
] ]
const open = ref(false) const open = ref(false)
const value = ref({}) const value = ref(null)
</script> </script>
<template> <template>