UNPKG

press-ui

Version:

简单、易用的跨端组件库,兼容 Vue2 和 Vue3,同时支持 uni-app和普通 Vue 项目

20 lines (15 loc) 444 B
/* eslint-disable import/first */ let Notify; // #ifndef H5 import NotifyMp from './handler-mp'; Notify = NotifyMp; // #endif // #ifdef H5 import NotifyWeb from './handler-web'; Notify = NotifyWeb; // #endif export default Notify; export const showNotify = Notify; export const closeNotify = Notify.clear; export const setNotifyDefaultOptions = Notify.setDefaultOptions; export const resetNotifyDefaultOptions = Notify.resetDefaultOptions;