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.

37 lines
817 B

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. <template>
  2. <div id="app">
  3. <h1>Essen in Göttingen</h1>
  4. <nav>
  5. <router-link to="/zentralmensa/heute">Zentralmensa</router-link>
  6. <router-link to="/turmmensa/heute">Mensa Am Turm</router-link>
  7. <router-link to="/nordmensa/heute">Nordmensa</router-link>
  8. </nav>
  9. <router-view></router-view>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. name: 'app',
  15. data () {
  16. return {
  17. menu: {}
  18. }
  19. }
  20. }
  21. </script>
  22. <style src="./assets/base.css"></style>
  23. <style>
  24. #app {
  25. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  26. -webkit-font-smoothing: antialiased;
  27. -moz-osx-font-smoothing: grayscale;
  28. text-align: center;
  29. color: #2c3e50;
  30. font-size: 16px;
  31. max-width: 30em;
  32. margin: 0 auto;
  33. }
  34. </style>