Nuxt/test/fixtures/basic/pages/with-layout.vue
mmis1000 c404cb1be4
fix(nuxt): page hydration and double load (#7940)
Co-authored-by: Daniel Roe <daniel@roe.dev>
2022-10-08 16:18:57 +02:00

15 lines
209 B
Vue

<script setup>
definePageMeta({
layout: 'custom'
})
</script>
<template>
<div>
<div>with-layout.vue</div>
<NuxtLink to="./with-layout2">
to another page
</NuxtLink>
</div>
</template>