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.

53 lines
1.3 KiB

7 years ago
  1. <template>
  2. <div class="hello">
  3. <h1>{{ msg }}</h1>
  4. <h2>Essential Links</h2>
  5. <ul>
  6. <li><a href="https://vuejs.org" target="_blank">Core Docs</a></li>
  7. <li><a href="https://forum.vuejs.org" target="_blank">Forum</a></li>
  8. <li><a href="https://gitter.im/vuejs/vue" target="_blank">Gitter Chat</a></li>
  9. <li><a href="https://twitter.com/vuejs" target="_blank">Twitter</a></li>
  10. <br>
  11. <li><a href="http://vuejs-templates.github.io/webpack/" target="_blank">Docs for This Template</a></li>
  12. </ul>
  13. <h2>Ecosystem</h2>
  14. <ul>
  15. <li><a href="http://router.vuejs.org/" target="_blank">vue-router</a></li>
  16. <li><a href="http://vuex.vuejs.org/" target="_blank">vuex</a></li>
  17. <li><a href="http://vue-loader.vuejs.org/" target="_blank">vue-loader</a></li>
  18. <li><a href="https://github.com/vuejs/awesome-vue" target="_blank">awesome-vue</a></li>
  19. </ul>
  20. </div>
  21. </template>
  22. <script>
  23. export default {
  24. name: 'hello',
  25. data () {
  26. return {
  27. msg: 'Welcome to Your Vue.js App'
  28. }
  29. }
  30. }
  31. </script>
  32. <!-- Add "scoped" attribute to limit CSS to this component only -->
  33. <style scoped>
  34. h1, h2 {
  35. font-weight: normal;
  36. }
  37. ul {
  38. list-style-type: none;
  39. padding: 0;
  40. }
  41. li {
  42. display: inline-block;
  43. margin: 0 10px;
  44. }
  45. a {
  46. color: #42b983;
  47. }
  48. </style>