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

15 lines
179 B
Vue

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