Commit 90448d67 authored by OverTree's avatar OverTree Committed by luckyCao

fix issue 14808 (#14809)

parent 45383cd6
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
> >
<span class="el-radio__inner"></span> <span class="el-radio__inner"></span>
<input <input
ref="radio"
class="el-radio__original" class="el-radio__original"
:value="label" :value="label"
type="radio" type="radio"
...@@ -98,6 +99,7 @@ ...@@ -98,6 +99,7 @@
} else { } else {
this.$emit('input', val); this.$emit('input', val);
} }
this.$refs.radio && (this.$refs.radio.checked = this.model === this.label);
} }
}, },
_elFormItemSize() { _elFormItemSize() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment