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