base_ui/components/auth/logout.vue
2025-02-01 13:04:55 +03:30

14 lines
192 B
Vue

<script>
export default {
name: "logout",
mounted() {
this.$store.dispatch("logout").then(() => {
this.$router.push({
name: "login",
});
});
},
};
</script>