数据可视化大屏
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.

12 lines
477B

  1. import { Routes } from '@angular/router';
  2. import { ExceptionComponent } from './exception.component';
  3. import { ExceptionTriggerComponent } from './trigger.component';
  4. export const routes: Routes = [
  5. { path: '403', component: ExceptionComponent, data: { type: 403 } },
  6. { path: '404', component: ExceptionComponent, data: { type: 404 } },
  7. { path: '500', component: ExceptionComponent, data: { type: 500 } },
  8. { path: 'trigger', component: ExceptionTriggerComponent }
  9. ];