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.

33 lines
463 B

6 years ago
6 years ago
6 years ago
6 years ago
  1. <template>
  2. <div id="app">
  3. <section>
  4. <h1>Transit Board</h1>
  5. <p>
  6. {{ now.getHours() }}:{{ now.getMinutes() }}:{{ now.getSeconds() }}
  7. </p>
  8. </section>
  9. <section>
  10. <p>data go here</p>
  11. </section>
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. name: 'app',
  17. data: function () {
  18. return {
  19. now: new Date()
  20. }
  21. },
  22. created () {
  23. setInterval(() => {
  24. this.now = new Date()
  25. }, 1000)
  26. }
  27. }
  28. </script>
  29. <style>
  30. </style>