From e3ef5c853eda6230236e8df3cece51be3846aaac Mon Sep 17 00:00:00 2001 From: neverland Date: Wed, 24 Jan 2018 15:31:07 +0800 Subject: [PATCH] [bugfix] Tab: active not work (#572) --- packages/tabs/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tabs/index.vue b/packages/tabs/index.vue index 2e8cfab3b..ecf715702 100644 --- a/packages/tabs/index.vue +++ b/packages/tabs/index.vue @@ -75,7 +75,7 @@ export default create({ }, tabs(tabs) { - this.correctActive(this.curActive); + this.correctActive(this.curActive || this.active); this.setNavBar(); },