Files
vue3-element-admin/src/store/interface.ts
有来技术 0091a5fab2 .
2021-11-20 23:59:45 +08:00

23 lines
383 B
TypeScript

// 接口类型声明
export interface UserState {
token: string,
nickname: string,
avatar: string,
roles: string[],
perms: string[]
}
export interface AppState {
device: string,
sidebar: {
opened: boolean,
withoutAnimation: boolean
}
}
// 顶级类型声明
export interface RootStateTypes {
user: UserState,
app:AppState
}