Nuxt/examples/auth-routes/pages/secret.vue
Sébastien Chopin 17650c25e0 Middleware feature 🔥
2017-02-03 15:09:38 +01:00

14 lines
312 B
Vue

<template>
<div>
<h1>Super secret page</h1>
<p>If you try to access this URL not connected, you will be redirected to the home page (server-side or client-side)</p>
<nuxt-link to="/">Back to the home page</nuxt-link>
</div>
</template>
<script>
export default {
middleware: 'auth'
}
</script>