We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e6e32b commit 21a6aa3Copy full SHA for 21a6aa3
packages/radio/src/radio-button.vue
@@ -25,7 +25,10 @@
25
@focus="focus = true"
26
@blur="focus = false"
27
>
28
- <span class="el-radio-button__inner" :style="value === label ? activeStyle : null">
+ <span
29
+ class="el-radio-button__inner"
30
+ :style="value === label ? activeStyle : null"
31
+ @keydown.stop>
32
<slot></slot>
33
<template v-if="!$slots.default">{{label}}</template>
34
</span>
packages/radio/src/radio.vue
@@ -35,7 +35,7 @@
35
tabindex="-1"
36
37
38
- <span class="el-radio__label">
+ <span class="el-radio__label" @keydown.stop>
39
40
41
0 commit comments