yoyo-ng-modulewindy
Version:
服务于52ABP模板的前端开源的相关组件内容。整合了ng-alain和你NG ZORRO的内容
22 lines • 802 B
JavaScript
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { NgZorroAntdModule } from 'ng-zorro-antd';
import { G2PieComponent } from './pie.component';
var COMPONENTS = [G2PieComponent];
var AdG2PieModule = /** @class */ (function () {
function AdG2PieModule() {
}
AdG2PieModule.forRoot = function () {
return { ngModule: AdG2PieModule, providers: [] };
};
AdG2PieModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule, NgZorroAntdModule],
declarations: COMPONENTS.slice(),
exports: COMPONENTS.slice(),
},] },
];
return AdG2PieModule;
}());
export { AdG2PieModule };
//# sourceMappingURL=pie.module.js.map