base_ui/components/auth/logout.vue

14 lines
192 B
Vue
Raw Normal View History

2025-02-01 09:34:55 +00:00
<script>
export default {
name: "logout",
mounted() {
this.$store.dispatch("logout").then(() => {
this.$router.push({
name: "login",
});
});
},
};
</script>