数据可视化大屏
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 1 rokem
1234567891011
  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. ];