routes.js 506 B

123456789101112131415161718192021222324252627
  1. import HomePage from '../pages/home.vue'
  2. import RadioPage from '../pages/Radio.vue'
  3. import ShowPage from '../pages/Show.vue'
  4. import NotFoundPage from '../pages/404.vue'
  5. var routes = [
  6. {
  7. path: '/',
  8. master: true,
  9. component: HomePage,
  10. detailRoutes: [{
  11. path: '/radio/:radioName',
  12. component: RadioPage,
  13. },
  14. {
  15. path: '/radio/:radioName/:showName',
  16. component: ShowPage
  17. }],
  18. },
  19. {
  20. path: '(.*)',
  21. component: NotFoundPage,
  22. },
  23. ]
  24. export default routes