gis-bi/core/core-frontend/src/utils/ModelUtil.ts

8 lines
177 B
TypeScript
Raw Normal View History

2025-02-27 14:44:08 +08:00
import { useCache } from '@/hooks/web/useCache'
const { wsCache } = useCache()
export const isDesktop = () => {
const desktop = wsCache.get('app.desktop')
return desktop
}