2024-08-22 11:27:06 +08:00
|
|
|
|
|
|
|
|
// pinia中auth store的key
|
|
|
|
|
export const AUTH_STORE_KEY = "cn-auth";
|
|
|
|
|
|
|
|
|
|
// pinia中global store的key
|
|
|
|
|
export const GLOBAL_STORE_KEY = "cn-global";
|
|
|
|
|
|
|
|
|
|
// pinia中keepAlive store的key
|
|
|
|
|
export const KEEP_ALIVE_STORE_KEY = "cn-keepAlive";
|
|
|
|
|
|
|
|
|
|
// pinia中tabs store的key
|
|
|
|
|
export const TABS_STORE_KEY = "cn-tabs";
|
|
|
|
|
|
|
|
|
|
// pinia中user store的key
|
|
|
|
|
export const USER_STORE_KEY = "cn-user";
|
|
|
|
|
|
2024-10-15 15:37:50 +08:00
|
|
|
// pinia中dict store的key
|
|
|
|
|
export const DICT_STORE_KEY = "cn-dictData";
|
|
|
|
|
|
2024-12-20 18:19:18 +08:00
|
|
|
export const CHECK_STORE_KEY = "cn-check";
|
|
|
|
|
|