mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 18:13:54 +00:00
14 lines
165 B
Vue
14 lines
165 B
Vue
|
<script setup>
|
||
|
definePageMeta({
|
||
|
middleware: 'other'
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
<NuxtLink to="/">
|
||
|
Back to home
|
||
|
</NuxtLink>
|
||
|
</div>
|
||
|
</template>
|