Ocelot-Social/webapp/pages/registration.vue
2019-09-11 16:40:39 +02:00

15 lines
208 B
Vue

<template>
<nuxt-child />
</template>
<script>
export default {
layout: 'basic',
asyncData({ store, redirect }) {
if (store.getters['auth/isLoggedIn']) {
redirect('/')
}
},
}
</script>