nimble-ui
Version:
18 lines (14 loc) • 353 B
JavaScript
import popupFactory from './PopupService';
import { PopupBase } from './PopupBase';
popupFactory.install = function (Vue, options) {
Vue.use(popupFactory(Vue, options), options);
};
export default popupFactory;
// export default {
// install (Vue, options) {
// Vue.use(new PopupService(Vue), options)
// }
// }
export {
PopupBase
};