We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 816de1b commit 7376070Copy full SHA for 7376070
packages/coreui-vue/src/components/form/CFormSelect.ts
@@ -160,7 +160,7 @@ const CFormSelect = defineComponent({
160
...(typeof option === 'object' && {
161
...(option.disabled && { disabled: option.disabled }),
162
...(option.selected && { selected: option.selected }),
163
- ...(option.value && {
+ ...(option.value !== undefined && {
164
value: option.value,
165
...(props.modelValue &&
166
props.multiple &&
0 commit comments