mirror of
https://github.com/dataease/dataease.git
synced 2025-02-26 13:12:54 +08:00
8 lines
177 B
Java
8 lines
177 B
Java
import { useCache } from '@/hooks/web/useCache'
|
|
const { wsCache } = useCache()
|
|
|
|
export const isDesktop = () => {
|
|
const desktop = wsCache.get('app.desktop')
|
|
return desktop
|
|
}
|