refactor(vue): remove support for child routes nested inside of tabs (#22919)

BREAKING CHANGE: Support for child routes nested inside of tabs has been removed to better conform to Vue Router's best practices. Additional routes should be written as sibling routes with the parent tab as the path prefix.
This commit is contained in:
Liam DeBeasi
2021-02-12 14:43:29 -05:00
committed by GitHub
parent 9e05891736
commit 75458ac7fb
7 changed files with 105 additions and 96 deletions

View File

@ -19,7 +19,7 @@ export const IonTabs = defineComponent({
'contain': 'layout size style'
}
}, [
h(IonRouterOutlet, { tabs: true })
h(IonRouterOutlet)
])
];