数据可视化大屏
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

18 строки
584B

  1. import { Routes } from '@angular/router';
  2. import { DataVHomeComponent } from './home/home.component';
  3. import { DataVUserComponent } from './user/user.component';
  4. import { DataVDateComponent } from './date/date.component';
  5. import { DataVWorkstationComponent } from './workstation/workstation.component';
  6. import { DataVS1Component } from './s1/s1.component';
  7. export const routes: Routes = [
  8. {
  9. path: 'home',
  10. component: DataVHomeComponent,
  11. children: [
  12. { path: '', component: DataVWorkstationComponent },
  13. { path: 's1', component: DataVS1Component }
  14. ]
  15. }];