Ocelot-Social/webapp/pages/registration.vue
Brent Vardy 53408f4bf4 refactor create-user-account to have no header
- also added locale switch to card
2019-09-11 16:40:39 +02:00

15 lines
212 B
Vue

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