wujingjing
2024-11-14 4cf4183e894b0ad99d2b7dd63b711fcddb213db7
src/stores/chatRoom.ts
@@ -3,6 +3,7 @@
import type { ChatRoomItem } from '../layout/component/sidebar/components/types';
import { router } from '../router';
import { gotoRoute } from '../utils/route';
import { Local } from '../utils/storage';
/**
 * Room 关联的一些配置
 */
@@ -174,7 +175,20 @@
      });
   }
};
// 是否已经展示引导
export const hadShowFirstGuide = ref(false);
//是否是新老用户
export const isNewOldUser = ref(null);
// 用户信息
export const userInfo ={
   get:()=>{
      return Local.get('userInfo');
   },
   set:(val)=>{
      return Local.set('userInfo',val);
   },
   clear:()=>{
      Local.remove('userInfo');
   },
   get isNew(){
      return !!this.get()?.web_login;
   }
}