Skip to content

Commit

Permalink
feat(异常模块): 新增异常模块下公共布局封装组件注册
Browse files Browse the repository at this point in the history
  • Loading branch information
jiayisheji committed Dec 4, 2017
1 parent 3ea6ac8 commit 07b271e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/feature/exception/exception.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ import { ExceptionRoutingModule } from './exception-routing.module';
import { NotFoundComponent } from './not-found/not-found.component';
import { ForbiddenComponent } from './forbidden/forbidden.component';
import { InternalServerErrorComponent } from './internal-server-error/internal-server-error.component';
import { ExceptionComponent } from './exception/exception.component';

@NgModule({
imports: [
SharedModule,
ExceptionRoutingModule
],
declarations: [NotFoundComponent, ForbiddenComponent, InternalServerErrorComponent]
declarations: [NotFoundComponent, ForbiddenComponent, InternalServerErrorComponent, ExceptionComponent]
})
export class ExceptionModule { }

0 comments on commit 07b271e

Please sign in to comment.