Nuxt/test/fixtures/basic/pages/with-layout.vue

15 lines
209 B
Vue
Raw Normal View History

2022-03-08 18:03:21 +00:00
<script setup>
definePageMeta({
layout: 'custom'
})
</script>
<template>
<div>
<div>with-layout.vue</div>
<NuxtLink to="./with-layout2">
to another page
</NuxtLink>
2022-03-08 18:03:21 +00:00
</div>
</template>