mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
19 lines
277 B
Vue
19 lines
277 B
Vue
|
<template>
|
||
|
<div>
|
||
|
Welcome to Nuxt Layouts 👋
|
||
|
|
||
|
<NuxtLink to="/manual">
|
||
|
Manual layout
|
||
|
</NuxtLink>
|
||
|
<NuxtLink to="/same">
|
||
|
Same layout
|
||
|
</NuxtLink>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default defineNuxtComponent({
|
||
|
layout: 'custom'
|
||
|
})
|
||
|
</script>
|