Nuxt/examples/routing/layouts/pages/other.vue

14 lines
165 B
Vue

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