-
-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Alternative to NuxtLayout? #487
Comments
I came here just to write the same request. Nuxt layouts are awesome, it's sad we can't use them by default (thanks for the awesome work so far) |
Came here for this as well and was looking for a suitable work-around but doesn't seem to be one at this time. 😢 |
For anyone needing a workaround, you can create a component like this and use it everywhere: <template>
<ion-page>
<ion-content class="h-screen overflow-hidden">
<Toaster />
<div class="app-padding font-default bg-background h-screen flex flex-col">
<slot />
</div>
</ion-content>
</ion-page>
</template>
<template>
<LayoutDefault>
...
</LayoutDefault>
</template> I really would love to have layouts though. I need this feature to not wrap every page in a custom component like above. |
I did not encounter a problem when I used NuxtLayout, did it cause a problem for you? |
🆒 Your use case
I'd like to use Nuxt's layouts feature for my app but the docs warn me away from use of NuxtLayout proper.
🆕 The solution you'd like
An ion alternative to NuxtLayout, or if one already exists, instructions added to the nuxt/ionic docs (under Watchouts).
🔍 Alternatives you've considered
Currently I'm using NuxtLayout against the doc's advice by using the code snipper in #231 (comment) wrapping it within ion-app.
ℹ️ Additional info
No response
The text was updated successfully, but these errors were encountered: