|
@@ -27,10 +27,10 @@ export default function () {
|
|
|
},
|
|
|
|
|
|
getValue() {
|
|
|
- const {inputValue, uncheckedValue} = this
|
|
|
+ const {checkedValue, uncheckedValue} = this
|
|
|
const ov = getValue.call(this)
|
|
|
// const ov = this.getRawValue()
|
|
|
- return (ov ? inputValue : uncheckedValue)
|
|
|
+ return (ov ? checkedValue : uncheckedValue)
|
|
|
},
|
|
|
|
|
|
|