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

8 lines
177 B
TypeScript

import { useCache } from '@/hooks/web/useCache'
const { wsCache } = useCache()
export const isDesktop = () => {
const desktop = wsCache.get('app.desktop')
return desktop
}