Nuxt/test/fixtures/basic/pages/layout-switch/start.vue
Anthony Fu adb1c122a7
fix(nuxt): fix error on layout switching (#21450)
Co-authored-by: Daniel Roe <daniel@roe.dev>
2023-06-23 11:02:01 +01:00

14 lines
196 B
Vue

<template>
<div>
<NuxtLink to="/layout-switch/end">
Switch layout
</NuxtLink>
</div>
</template>
<script setup lang="ts">
definePageMeta({
layout: 'custom-async'
})
</script>