experiments.js 468 B

12345678910111213141516
  1. export default [
  2. {
  3. path: '/experiments/ExperimentNoReference/:sceneId',
  4. name: 'ExperimentNoReference',
  5. fullName: 'No reference image',
  6. component: () => import('@/views/Experiments/NoReference.vue'),
  7. props: true
  8. },
  9. {
  10. path: '/experiments/ExperimentWithReference/:sceneId',
  11. name: 'ExperimentWithReference',
  12. fullName: 'With reference image',
  13. component: () => import('@/views/Experiments/WithReference.vue'),
  14. props: true
  15. }
  16. ]