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

15 lines
180 B
Vue
Raw Normal View History

2021-06-30 16:32:22 +00:00
<template>
<div>
Same layout as home
<NuxtLink to="/">
Back to home
</NuxtLink>
</div>
</template>
<script>
definePageMeta({
2021-06-30 16:32:22 +00:00
layout: 'custom'
})
2021-06-30 16:32:22 +00:00
</script>