fix potential bug to render active tab in controlled way
This commit is contained in:
parent
9dd9ba0205
commit
eafd53f994
|
@ -71,7 +71,7 @@ export default Vue.component('tab-switcher', {
|
|||
|
||||
const contents = this.$slots.default.map((slot, index) => {
|
||||
if (!slot.tag) return
|
||||
const active = index === this.active
|
||||
const active = this.isActiveTab(index)
|
||||
if (this.renderOnlyFocused) {
|
||||
return active
|
||||
? <div class="active">{slot}</div>
|
||||
|
|
Loading…
Reference in New Issue