mirror of
https://gitee.com/lyt-top/vue-next-admin
synced 2026-07-03 11:51:07 +08:00
8 lines
248 B
TypeScript
8 lines
248 B
TypeScript
import { Local } from '/@/utils/storage';
|
|
|
|
/**
|
|
* 全局组件大小
|
|
* @returns 返回 `window.localStorage` 中读取的缓存值 `globalComponentSize`
|
|
*/
|
|
export const globalComponentSize: string = Local.get('themeConfig')?.globalComponentSize;
|