jichoi / lms_front star
woals 2024-08-21
240821 권민수 학습일정 통한 대시보드 진입 시 메뉴 활성화 되지 않는 버그 해결
@360f92e003b8e2de2ed6af26db72c1e3de15391f
client/views/layout/Menu.vue
--- client/views/layout/Menu.vue
+++ client/views/layout/Menu.vue
@@ -36,19 +36,19 @@
             this.activeButton = button;
         },
 
-        // 홈 화면이면 모든 버튼을 비활성화
+        // 경로에 따른 메뉴 버튼 설정
         updateActiveButton() {
             if (this.currentRoute === '/MyPlan.page') {
                 this.activeButton = 'schedule';
+            } else if (this.currentRoute === '/PreviewNote.page') {
+                this.activeButton = '';
+            } else if (this.currentRoute === '/Dashboard.page') {
+                this.activeButton = 'dashboard';
+            } else if (this.currentRoute === '/MyPage.page') {
+                this.activeButton = 'mypage';
             }
         },
 
-        // 오답노트 화면이면 모든 버튼을 비활성화
-        updateActiveButton() {
-            if (this.currentRoute === '/PreviewNote.page') {
-                this.activeButton = '';
-            }
-        },
     },
     watch: {
         currentRoute() {
Add a comment
List