|
|
@ -83,7 +83,7 @@ export default defineComponent({ |
|
|
|
const valueField = isCheckValue ? 'checked' : 'value' |
|
|
|
const valueField = isCheckValue ? 'checked' : 'value' |
|
|
|
const val = unref(currentValueRef) |
|
|
|
const val = unref(currentValueRef) |
|
|
|
|
|
|
|
|
|
|
|
const value = isCheckValue ? (isNumber(val) && isBoolean(val) ? val : !!val) : val |
|
|
|
const value = isCheckValue ? (isNumber(val) || isBoolean(val) ? val : !!val) : val |
|
|
|
|
|
|
|
|
|
|
|
let compProps = props.column?.editComponentProps ?? {} |
|
|
|
let compProps = props.column?.editComponentProps ?? {} |
|
|
|
const { record, column, index } = props |
|
|
|
const { record, column, index } = props |
|
|
|