press-next
Version:
Vue3 组件库,支持 Composition API
25 lines (17 loc) • 393 B
text/typescript
// #ifndef H5
import { globalVarVue3 as globalVarVue3Mp } from './mp';
// #endif
// #ifdef H5
import { globalVarVue3 as globalVarVue3Web } from './web';
// #endif
import type { GlobalVarVue3 } from './types';
let globalVarVue3: GlobalVarVue3;
// #ifndef H5
globalVarVue3 = globalVarVue3Mp;
// #endif
// #ifdef H5
globalVarVue3 = globalVarVue3Web;
// #endif
export {
globalVarVue3,
};