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