Files
habitica/website/client/src/components/auth/logout.vue
T
Matteo Pagliazzi b44fbdcb14 old client structure
2019-10-01 11:44:38 +02:00

14 lines
221 B
Vue

<script>
export default {
components: {},
methods: {
async logout () {
return await this.$store.dispatch('auth:logout');
},
},
created () {
this.logout();
},
};
</script>