import { ref } from 'vue' /** App 端固定非微信 H5;保留 isWeChat 以兼容迁移代码分支 */ const isWeChat = ref(false) export function useEnv() { return { isWeChat, } }