14 lines
192 B
Vue
14 lines
192 B
Vue
![]() |
<script>
|
||
|
export default {
|
||
|
name: "logout",
|
||
|
|
||
|
mounted() {
|
||
|
this.$store.dispatch("logout").then(() => {
|
||
|
this.$router.push({
|
||
|
name: "login",
|
||
|
});
|
||
|
});
|
||
|
},
|
||
|
};
|
||
|
</script>
|