14 lines
193 B
Vue
14 lines
193 B
Vue
<script>
|
|
export default {
|
|
components: {},
|
|
created () {
|
|
this.logout();
|
|
},
|
|
methods: {
|
|
async logout () {
|
|
return this.$store.dispatch('auth:logout');
|
|
},
|
|
},
|
|
};
|
|
</script>
|