Logo white

grp_ai / matching_ai_withui

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • matching_ai_withui
  • babylon-vue-4.0.0
  • src
  • views
  • common
  • Logout.vue
  • babylon client form 추가
    0f94839d
    함상기 authored
    2024-04-16 17:25:24 +0900  
    Browse Code »
Logout.vue 275 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<template></template>

<script>
import { logoutForm } from '../../service/login'
import { useStore } from "vuex";
import router from "../../router";

export default {
  setup() {
    const store = useStore();
    logoutForm(store);
    router.push('/login');
  }
};
</script>