Set empty string to value instead of null

Co-authored-by: Sadegh Barati <sadeghbaratiwork@gmail.com>
This commit is contained in:
Dev By Ray 2024-03-21 16:17:05 +01:00 committed by GitHub
parent d4cab92052
commit 258a8fc8fa
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(null) const value = ref('')
</script> </script>
<template> <template>