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" prop
pull/22947/head
Yinjie Wu 2024-08-09 15:50:11 +08:00
parent c345bb453b
commit 91f05efc6d
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
class="el-radio__original"
:value="label"
type="radio"
aria-hidden="true"
role="presentation"
v-model="model"
@focus="focus = true"
@blur="focus = false"