SEPTA transit board for me
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.

57 lines
1.7 KiB

6 years ago
  1. <template>
  2. <div class="hello">
  3. <h1>{{ msg }}</h1>
  4. <p>
  5. For guide and recipes on how to configure / customize this project,<br>
  6. check out the
  7. <a href="https://cli.vuejs.org" target="_blank">vue-cli documentation</a>.
  8. </p>
  9. <h3>Installed CLI Plugins</h3>
  10. <ul>
  11. <li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-babel" target="_blank">babel</a></li>
  12. <li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint" target="_blank">eslint</a></li>
  13. </ul>
  14. <h3>Essential Links</h3>
  15. <ul>
  16. <li><a href="https://vuejs.org" target="_blank">Core Docs</a></li>
  17. <li><a href="https://forum.vuejs.org" target="_blank">Forum</a></li>
  18. <li><a href="https://chat.vuejs.org" target="_blank">Community Chat</a></li>
  19. <li><a href="https://twitter.com/vuejs" target="_blank">Twitter</a></li>
  20. </ul>
  21. <h3>Ecosystem</h3>
  22. <ul>
  23. <li><a href="https://router.vuejs.org" target="_blank">vue-router</a></li>
  24. <li><a href="https://vuex.vuejs.org" target="_blank">vuex</a></li>
  25. <li><a href="https://github.com/vuejs/vue-devtools#vue-devtools" target="_blank">vue-devtools</a></li>
  26. <li><a href="https://vue-loader.vuejs.org" target="_blank">vue-loader</a></li>
  27. <li><a href="https://github.com/vuejs/awesome-vue" target="_blank">awesome-vue</a></li>
  28. </ul>
  29. </div>
  30. </template>
  31. <script>
  32. export default {
  33. name: 'HelloWorld',
  34. props: {
  35. msg: String
  36. }
  37. }
  38. </script>
  39. <!-- Add "scoped" attribute to limit CSS to this component only -->
  40. <style scoped>
  41. h3 {
  42. margin: 40px 0 0;
  43. }
  44. ul {
  45. list-style-type: none;
  46. padding: 0;
  47. }
  48. li {
  49. display: inline-block;
  50. margin: 0 10px;
  51. }
  52. a {
  53. color: #42b983;
  54. }
  55. </style>