UNPKG

gtht-miniapp-sdk

Version:

gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库

19 lines (18 loc) 441 B
let platform = ''; // #ifdef APP platform = 'app'; // #endif // #ifdef MP-WEIXIN platform = 'mp-weixin'; // #endif // #ifdef MP-ALIPAY platform = 'mp-alipay'; // #endif // #ifdef WEB platform = 'web'; // #endif export const isWeb = platform === 'web'; export const isApp = platform === 'app'; export const isMp = platform.startsWith('mp-'); export const isWeixin = platform === 'mp-weixin'; export const isAlipay = platform === 'mp-alipay';