mirror of https://github.com/ElemeFE/element
Radio: fix an console error caused by using of an improper prop
fix "Blocked aria-hidden on a <inpit> element" problem by replacing "aria-hidden" prop with "role" proppull/22947/head
parent
c345bb453b
commit
91f05efc6d
|
@ -26,7 +26,7 @@
|
||||||
class="el-radio__original"
|
class="el-radio__original"
|
||||||
:value="label"
|
:value="label"
|
||||||
type="radio"
|
type="radio"
|
||||||
aria-hidden="true"
|
role="presentation"
|
||||||
v-model="model"
|
v-model="model"
|
||||||
@focus="focus = true"
|
@focus="focus = true"
|
||||||
@blur="focus = false"
|
@blur="focus = false"
|
||||||
|
|
Loading…
Reference in New Issue