数据可视化大屏
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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