Fix: interface error

This commit is contained in:
unitwk 2023-08-24 14:27:15 +08:00
parent ed6c0ab620
commit 97a3d96213
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ import { reactive } from "vue";
import { createGlobalState } from "@vueuse/core";
import _ from "lodash";
import { userInfoApi } from "@/services/apis";
import type { BaseUserInfo } from "@/types/user";
interface AppStateInfo {
userInfo: BaseUserInfo | null;

View File

@ -1,4 +1,4 @@
interface BaseUserInfo {
export interface BaseUserInfo {
uuid: string;
userName: string;
loginTime: string;