Nuxt/examples/with-layouts/pages/same.vue

15 lines
180 B
Vue

<template>
<div>
Same layout as home
<NuxtLink to="/">
Back to home
</NuxtLink>
</div>
</template>
<script>
definePageMeta({
layout: 'custom'
})
</script>