press-next
Version:
Vue3 组件库,支持 Composition API
26 lines (17 loc) • 312 B
text/typescript
// #ifndef H5
import { Toast as ToastMp } from './toast-mp';
// #endif
// #ifdef H5
import { Toast as ToastWeb } from './toast-web';
// #endif
import type { IToast } from './types';
let Toast: IToast;
// #ifdef H5
Toast = ToastWeb;
// #endif
// #ifndef H5
Toast = ToastMp;
// #endif
export {
Toast,
};