소스 검색

fixed init user check fi loggedin

bach 2 년 전
부모
커밋
3e791910cc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/stores/user.js

+ 1 - 1
src/stores/user.js

@@ -29,7 +29,7 @@ export const UserStore = defineStore({
             this.uid = data.attributes.drupal_internal__uid
             this.mail = data.attributes.mail
             this.name = data.attributes.name
-            this.isloggedin = data.attributes.status
+            this.isloggedin = true //data.attributes.status
             console.log('user store checkuser isloggedin', this.isloggedin);
           })
         }