数据可视化大屏
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. ];