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.

43 lines
568 B

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. <template>
  2. <div class="mensa">
  3. <h3 id="date">{{date}}</h3>
  4. <div class="meal" v-for="meal in meals">
  5. <h3>{{meal.category}}</h3>
  6. <p>{{meal.title}}</p>
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. import { mapGetters } from 'vuex'
  12. export default {
  13. name: 'mensa',
  14. computed:{
  15. ...mapGetters({
  16. meals: 'getMeals',
  17. date: 'getDate'
  18. })
  19. }
  20. }
  21. </script>
  22. <style>
  23. .meal{
  24. margin: 2em 0;
  25. }
  26. .meal>h3{
  27. margin-bottom:0em;
  28. }
  29. .meal>p{
  30. margin-top: 0.4em;
  31. }
  32. #date{
  33. margin-bottom: -1em;
  34. }
  35. .mensa{
  36. margin-bottom: 3em;
  37. }
  38. </style>