2021-06-30 16:32:22 +00:00
|
|
|
<template>
|
2022-03-31 13:31:04 +00:00
|
|
|
<NuxtExampleLayout example="routing/layouts">
|
2022-03-23 08:44:36 +00:00
|
|
|
<template #nav>
|
|
|
|
<nav class="flex align-center gap-4 p-4">
|
|
|
|
<NuxtLink to="/default">
|
|
|
|
Default layout
|
|
|
|
</NuxtLink>
|
|
|
|
<NuxtLink to="/custom">
|
|
|
|
Custom layout
|
|
|
|
</NuxtLink>
|
|
|
|
<NuxtLink to="/dynamic">
|
|
|
|
Dynamic layout
|
|
|
|
</NuxtLink>
|
2022-08-31 08:02:48 +00:00
|
|
|
<NuxtLink to="/other">
|
|
|
|
Other layout
|
|
|
|
</NuxtLink>
|
|
|
|
<NButton @click="setPageLayout('default')">
|
|
|
|
Change to default layout
|
|
|
|
</NButton>
|
|
|
|
<NButton @click="setPageLayout('custom')">
|
|
|
|
Change to custom layout
|
|
|
|
</NButton>
|
|
|
|
<NButton @click="setPageLayout('other')">
|
|
|
|
Change to other layout
|
|
|
|
</NButton>
|
2022-03-23 08:44:36 +00:00
|
|
|
</nav>
|
|
|
|
</template>
|
|
|
|
</NuxtExampleLayout>
|
2021-06-30 16:32:22 +00:00
|
|
|
</template>
|