FlowChart のレイアウト修正

This commit is contained in:
2023-11-14 09:11:46 +09:00
parent 8b9cfa34c7
commit 17760a6926
5 changed files with 57 additions and 164 deletions

View File

@@ -1,6 +1,6 @@
import { defineStore } from 'pinia';
import { api } from 'boot/axios';
import {router} from 'src/router';
import {IDomainInfo} from '../types/ActionTypes';
@@ -67,7 +67,7 @@ export const useAuthStore = defineStore({
this.token = undefined;
localStorage.removeItem('token');
localStorage.removeItem('currentDomain');
Router.push('/login');
router.push('/login');
},
async setCurrentDomain(domain:IDomainInfo){
if(domain.id===this.currentDomain.id){