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