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

18 lines
676B

  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. import { DataVThreejsComponent } from './threejs/threejs.component';
  8. import { DataVT1Component } from './t1/t1.component';
  9. export const routes: Routes = [
  10. {
  11. path: 's1',
  12. component: DataVS1Component
  13. }
  14. ,
  15. { path: 'threejs', component: DataVThreejsComponent },
  16. { path: 't1', component: DataVT1Component }];