diff --git a/packages/checkbox/index.vue b/packages/checkbox/index.vue index 9518db5ee..7f7e30cbe 100644 --- a/packages/checkbox/index.vue +++ b/packages/checkbox/index.vue @@ -84,8 +84,7 @@ export default { }, isChecked() { - const currentValue = this.currentValue; - console.log('this.currentValue:', this.currentValue); + const { currentValue } = this; if ({}.toString.call(currentValue) === '[object Boolean]') { return currentValue; } else if (currentValue !== null && currentValue !== undefined) { diff --git a/packages/tab/index.vue b/packages/tab/index.vue index 232bd6b33..65933ef2e 100644 --- a/packages/tab/index.vue +++ b/packages/tab/index.vue @@ -1,35 +1,51 @@