mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
fix(vue): improve path matching when going back (#22275)
resolves #22258
This commit is contained in:
@ -6,8 +6,8 @@ export const IonPage = defineComponent({
|
||||
isInOutlet: { type: Boolean, default: false }
|
||||
},
|
||||
setup(props, { attrs, slots }) {
|
||||
const hidePageClass = (props.isInOutlet) ? 'ion-page-invisible' : '';
|
||||
return () => {
|
||||
const hidePageClass = (props.isInOutlet) ? 'ion-page-invisible' : '';
|
||||
return h(
|
||||
'div',
|
||||
{
|
||||
|
Reference in New Issue
Block a user