This commit is contained in:
Taric Xin
2022-03-23 11:22:38 +08:00
parent 8d31f21547
commit 2a065d7c6d

View File

@ -6,12 +6,12 @@ import { DashboardComponent } from './dashboard/dashboard.component';
import { RouteRoutingModule } from './routes-routing.module';
import { BasicTableComponent } from './commom/components/basic-table/basic-table.component';
const COMPONENTS = [DashboardComponent];
const COMPONENTS = [DashboardComponent, BasicTableComponent];
const COMPONENTS_NOROUNT: Array<Type<void>> = [];
@NgModule({
imports: [SharedModule, RouteRoutingModule],
declarations: [...COMPONENTS, ...COMPONENTS_NOROUNT, BasicTableComponent],
declarations: [...COMPONENTS, ...COMPONENTS_NOROUNT],
entryComponents: COMPONENTS_NOROUNT
})
export class RoutesModule {}