@coreui/vue-pro 4.10.2 → 4.10.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/form/CFormCheck.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -9379,7 +9379,7 @@ const CFormCheck = vue.defineComponent({
|
|
|
9379
9379
|
const formControl = () => {
|
|
9380
9380
|
return vue.h('input', {
|
|
9381
9381
|
...attrs,
|
|
9382
|
-
...(props.modelValue
|
|
9382
|
+
...((props.modelValue || props.value) && { checked: isChecked.value }),
|
|
9383
9383
|
class: inputClassName,
|
|
9384
9384
|
id: props.id,
|
|
9385
9385
|
indeterminate: props.indeterminate,
|