Nuxt/examples/routing/layouts/pages/other.vue
Daniel Roe b90d286631
feat(nuxt): add setPageLayout utility (#6826) (#7075)
Co-authored-by: HomWang <516310460@qq.com>
2022-08-31 10:02:48 +02:00

14 lines
165 B
Vue

<script setup>
definePageMeta({
middleware: 'other'
})
</script>
<template>
<div>
<NuxtLink to="/">
Back to home
</NuxtLink>
</div>
</template>