style(components): [checkbox] fix checkbox-button class var spelling (#11044)

Co-authored-by: din <amifed.me@gmail.com>
This commit is contained in:
Dinq 2023-01-04 18:03:28 +08:00 committed by GitHub
parent 5689138f3c
commit 3780064ce7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
<template>
<label :class="lableKls">
<label :class="labelKls">
<input
v-if="trueLabel || falseLabel"
v-model="model"
@ -76,7 +76,7 @@ const activeStyle = computed<CSSProperties>(() => {
}
})
const lableKls = computed(() => {
const labelKls = computed(() => {
return [
ns.b('button'),
ns.bm('button', checkboxButtonSize.value),