UNPKG

vaneditor

Version:

``` 移动端ui框架统一用uView,css扩展语言用scss,全局数据管理vuex,统一样式主体风格颜色定义/src/uni.scss ```

42 lines (32 loc) 626 B
import { getSupport } from './get-support.js'; let deviceCached; function calcDevice({ userAgent } = {}) { const support = getSupport(); const device = { ios: false, android: false }; const res = uni.getSystemInfoSync(); if (res.platform == "android") { device.os = 'android'; device.android = true; } if (res.platform == "ios") { device.os = 'ios'; device.ios = true; } // Export object return device; } function getDevice(overrides = {}) { if (!deviceCached) { deviceCached = calcDevice(overrides); } return deviceCached; } export { getDevice };