fix(vue): pushing a non-tabs page inside of tabs no longer renders it inside of the tabs outlet (#22112)

resolves #22066
This commit is contained in:
Liam DeBeasi
2020-09-22 11:55:22 -04:00
committed by GitHub
parent 9ca8b9de46
commit 6ac6810148
3 changed files with 8 additions and 12 deletions

View File

@ -20,8 +20,7 @@ export const IonTabs = defineComponent({
'height': '100%',
'contain': 'layout size style',
'z-index': '0'
},
ref: 'ionTabsRef'
}
},
[
h(
@ -35,7 +34,7 @@ export const IonTabs = defineComponent({
}
},
[
h(IonRouterOutlet, { tabs: true })
h(IonRouterOutlet)
]
),
...slots.default && slots.default()