mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
* removed obsolete images * moved all overwritable images to a location webapp/static/img/custom/ * better names
25 lines
736 B
Vue
25 lines
736 B
Vue
<template>
|
|
<ds-container width="small">
|
|
<ds-flex>
|
|
<ds-flex-item :width="{ base: '100%' }" centered>
|
|
<ds-space style="text-align: center;" margin-top="large" margin-bottom="xxx-small" centered>
|
|
<img style="width: 200px;" alt="Logging out" src="/img/custom/logout.svg" />
|
|
</ds-space>
|
|
<ds-space style="text-align: center;" margin-top="small" margin-bottom="xxx-small" centered>
|
|
<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>
|