import { Http,Util } from '@/utils'; import MicroComponentServiceBase from './micro-component-service-base'; /** * 微组件服务对象 * * @export * @class MicroComponentService * @extends {MicroComponentServiceBase} */ export default class MicroComponentService extends MicroComponentServiceBase { /** * Creates an instance of MicroComponentService. * * @param {*} [opts={}] * @memberof MicroComponentService */ constructor(opts: any = {}) { super(opts); } }