mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
734 B
18 lines
734 B
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
import { NgbDropdownModule } from '@ng-bootstrap/ng-bootstrap';
|
|
import { NzTreeModule } from 'ng-zorro-antd/tree';
|
|
import { TreeComponent } from './components/tree.component';
|
|
import { TreeNodeTemplateDirective } from './templates/tree-node-template.directive';
|
|
import { ExpandedIconTemplateDirective } from './templates/expanded-icon-template.directive';
|
|
|
|
const templates = [TreeNodeTemplateDirective, ExpandedIconTemplateDirective];
|
|
|
|
const exported = [...templates, TreeComponent];
|
|
|
|
@NgModule({
|
|
imports: [CommonModule, NzTreeModule, NgbDropdownModule],
|
|
exports: [...exported],
|
|
declarations: [...exported],
|
|
})
|
|
export class TreeModule {}
|
|
|