Ocelot-Social/pages/logout.vue
2018-10-17 19:57:24 +02:00

40 lines
895 B
Vue

<template>
<ds-container width="small">
<ds-flex>
<ds-flex-item
:width="{ base: '100%' }"
center>
<ds-space
style="text-align: center;"
margin-top="large"
margin-bottom="xxx-small"
center>
<img
style="width: 200px;"
src="/img/sign-up/onourjourney.png"
alt="Human Connection">
</ds-space>
<ds-space
style="text-align: center;"
margin-top="small"
margin-bottom="xxx-small"
center>
<ds-heading
tag="h3"
soft>Logging out...</ds-heading>
</ds-space>
</ds-flex-item>
</ds-flex>
</ds-container>
</template>
<script>
export default {
layout: 'blank',
async beforeCreate() {
await this.$store.dispatch('auth/logout')
this.$router.replace('/')
}
}
</script>