Skip to content

Commit

Permalink
fix(tabs): minor logic update
Browse files Browse the repository at this point in the history
  • Loading branch information
tmorehouse committed Aug 22, 2017
1 parent d920b1c commit add0fb6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/components/tab.vue
Expand Up @@ -38,9 +38,12 @@
data() {
return {
localActive: this.active && !this.disabled,
show: this.active && !this.disabled
show: false
};
},
mounted() {
this.show = this.localActive;
},
computed: {
tabClasses() {
return [
Expand Down

0 comments on commit add0fb6

Please sign in to comment.