aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/checkbox/checkbox.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/checkbox/checkbox.vue b/src/components/checkbox/checkbox.vue
index 7d4e0e95..b8b77e7c 100644
--- a/src/components/checkbox/checkbox.vue
+++ b/src/components/checkbox/checkbox.vue
@@ -45,7 +45,9 @@ export default {
},
methods: {
onTransitionEnd (e) {
- this.indeterminateTransitionFix = false
+ if (!this.indeterminate) {
+ this.indeterminateTransitionFix = false
+ }
}
}
}