mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
16 lines
322 B
Vue
16 lines
322 B
Vue
<template>
|
|
<div>
|
|
<h1>Super secret page</h1>
|
|
<p>If you try to access this URL not connected, you will see the error page telling your that you are not connected.</p>
|
|
<NuxtLink to="/">
|
|
Back to the home page
|
|
</NuxtLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
middleware: 'auth'
|
|
}
|
|
</script>
|