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.

44 lines
670 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
7 years ago
  1. <template>
  2. <div id="tag">
  3. <div class="meal" v-for="meal in meals">
  4. <h3>{{meal.category}}</h3>
  5. <p>{{meal.title}}</p>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'mensa',
  12. data () {
  13. return {
  14. meals: []
  15. }
  16. },
  17. watch: {$route: 'loadMeals'},
  18. created () {
  19. this.loadMeals()
  20. },
  21. methods: {
  22. loadMeals () {
  23. fetch(`/static/${this.$route.params.mensa}.${this.$route.params.tag}.json`)
  24. .then(res => res.json())
  25. .then(menu => { this.meals = menu.meals })
  26. }
  27. }
  28. }
  29. </script>
  30. <style>
  31. .meal{
  32. margin: 2em 0;
  33. }
  34. .meal>h3{
  35. margin-bottom:0em;
  36. }
  37. .meal>p{
  38. margin-top: 0.4em;
  39. }
  40. </style>