1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-02-22 08:29:46 +00:00
Nuxt/examples/with-layouts/pages/same.vue
2021-06-30 18:32:22 +02:00

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>