experiments.js 464 B

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