mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 18:13:54 +00:00
21 lines
326 B
Vue
21 lines
326 B
Vue
|
<template>
|
||
|
<div>
|
||
|
Welcome to Nuxt Layouts 👋
|
||
|
|
||
|
<NuxtLink to="/manual">
|
||
|
Manual layout
|
||
|
</NuxtLink>
|
||
|
<NuxtLink to="/same">
|
||
|
Same layout
|
||
|
</NuxtLink>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { defineNuxtComponent } from '@nuxt/app'
|
||
|
|
||
|
export default defineNuxtComponent({
|
||
|
layout: 'custom'
|
||
|
})
|
||
|
</script>
|