Skip to content

Commit

Permalink
fix(components): [radio] fix typo (#8556)
Browse files Browse the repository at this point in the history
  • Loading branch information
holazz committed Jul 1, 2022
1 parent 3a436a0 commit b922b9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/radio/src/radio.vue
Expand Up @@ -10,7 +10,7 @@
rawAttrs.class,
]"
:style="containerStyle"
v-bind="labelListieners"
v-bind="labelListeners"
>
<span
:class="[
Expand Down Expand Up @@ -61,7 +61,7 @@ const containerStyle = computed<StyleValue>(() => rawAttrs.style as StyleValue)
const inputAttrs = useAttrs({ excludeListeners: true })
const labelListieners = useAttrs({
const labelListeners = useAttrs({
excludeKeys: computed<string[]>(() => {
return Object.keys(inputAttrs.value)
}),
Expand Down

0 comments on commit b922b9e

Please sign in to comment.