Speiseplan der Mensen der Georg-August-Universität Göttingen https://mensa.schneider-hosting.de
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.

20 lines
314 B

7 years ago
7 years ago
7 years ago
  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. import Mensa from '@/components/Mensa'
  4. Vue.use(Router)
  5. export default new Router({
  6. mode: 'history',
  7. routes: [
  8. {
  9. path: '/',
  10. name: 'Mensa',
  11. component: Mensa
  12. },
  13. {
  14. path: '/:mensa/:tag',
  15. component: Mensa
  16. }
  17. ]
  18. })