mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
19 lines
466 B
Vue
19 lines
466 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 {
|
|
// we use fetch() because we do not need to set data to this component
|
|
fetch ({ store, redirect }) {
|
|
if (!store.state.authUser) {
|
|
return redirect('/')
|
|
}
|
|
}
|
|
}
|
|
</script>
|