mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
19 lines
263 B
Vue
19 lines
263 B
Vue
<template>
|
|
<div>
|
|
Welcome to Nuxt Layouts 👋
|
|
|
|
<NuxtLink to="/manual">
|
|
Manual layout
|
|
</NuxtLink>
|
|
<NuxtLink to="/same">
|
|
Same layout
|
|
</NuxtLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
definePageMeta({
|
|
layout: 'custom'
|
|
})
|
|
</script>
|