mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
b2b4c64807
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
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>
|