mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
30 lines
622 B
Vue
30 lines
622 B
Vue
<template>
|
|
<ds-container width="medium">
|
|
<base-card>
|
|
<template v-slot:imageColumn>
|
|
<img alt="Human Connection" src="/img/sign-up/nicetomeetyou.svg" />
|
|
</template>
|
|
<nuxt-child />
|
|
<template v-slot:topMenu>
|
|
<locale-switch offset="5" />
|
|
</template>
|
|
</base-card>
|
|
</ds-container>
|
|
</template>
|
|
|
|
<script>
|
|
import LocaleSwitch from '~/components/LocaleSwitch/LocaleSwitch'
|
|
|
|
export default {
|
|
components: {
|
|
LocaleSwitch,
|
|
},
|
|
layout: 'no-header',
|
|
asyncData({ store, redirect }) {
|
|
if (store.getters['auth/isLoggedIn']) {
|
|
redirect('/')
|
|
}
|
|
},
|
|
}
|
|
</script>
|