mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
18 lines
423 B
Vue
18 lines
423 B
Vue
<template>
|
|
<NuxtExampleLayout example="routing/layouts">
|
|
<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>
|
|
</nav>
|
|
</template>
|
|
</NuxtExampleLayout>
|
|
</template>
|