[파일 경로 수정] cultureGraph 관련 컴포넌트의 import 경로를 culture-graph로 변경하고, user.ts에서 주석 처리된 사용자 로그아웃 및 탭 초기화 로직을 활성화함.
This commit is contained in:
		@@ -28,5 +28,5 @@
 | 
				
			|||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
<script setup lang="ts">
 | 
					<script setup lang="ts">
 | 
				
			||||||
import BatchTabs from "~/components/domain/cultureGraph/BatchTabs.vue";
 | 
					import BatchTabs from "~/components/domain/culture-graph/BatchTabs.vue";
 | 
				
			||||||
</script>
 | 
					</script>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -146,7 +146,7 @@
 | 
				
			|||||||
<script setup lang="ts">
 | 
					<script setup lang="ts">
 | 
				
			||||||
import { ref, onMounted, watch, computed, onUnmounted } from "vue";
 | 
					import { ref, onMounted, watch, computed, onUnmounted } from "vue";
 | 
				
			||||||
import * as echarts from "echarts";
 | 
					import * as echarts from "echarts";
 | 
				
			||||||
import CustomContextMenu from "~/components/domain/cultureGraph/CustomContextMenu.vue";
 | 
					import CustomContextMenu from "~/components/domain/culture-graph/CustomContextMenu.vue";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// 타입 인터페이스 정의
 | 
					// 타입 인터페이스 정의
 | 
				
			||||||
interface YAxis {
 | 
					interface YAxis {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -54,13 +54,13 @@ export const useUserStore = defineStore(
 | 
				
			|||||||
        showAlert: false,
 | 
					        showAlert: false,
 | 
				
			||||||
      });
 | 
					      });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      // user.value = null;
 | 
					      user.value = null;
 | 
				
			||||||
      // isLoggedIn.value = false;
 | 
					      isLoggedIn.value = false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      // tabsStore.resetTabs();
 | 
					      tabsStore.resetTabs();
 | 
				
			||||||
      // permissionsStore.clearPermissions();
 | 
					      permissionsStore.clearPermissions();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      // await navigateTo("/login");
 | 
					      await navigateTo("/login");
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return {
 | 
					    return {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user