jichoi / lms_front star
woals 2024-08-23
240823 권민수 학생 로그인 시 side컴포넌트에서 해당 학생 정보 받아오도록 설정
@4a002f678e51a6a4ba34c03c4679fc9c3994d04d
client/views/layout/Side.vue
--- client/views/layout/Side.vue
+++ client/views/layout/Side.vue
@@ -80,6 +80,12 @@
     };
   },
   methods: {
+    pageSetting() {
+      this.userId = this.$store.getters.getUserInfo.userId;
+      console.log("유저 아이디: ", this.userId);
+      this.fetchStudentInfo();
+    },
+
     // 학생 정보를 가져오는 메서드
     fetchStudentInfo() {
       axios
@@ -146,7 +152,7 @@
   },
   mounted() {
     console.log("Side mounted");
-    this.fetchStudentInfo();
+    this.pageSetting();
   },
 };
 </script>
Add a comment
List