Timers and other features for Heroes of the Storm
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.
 
 
 
 
 

70 lines
2.2 KiB

  1. <!--
  2. Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
  3. This file is part of Nexus Timers.
  4. Nexus Timers is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU Affero General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. Nexus Timers is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU Affero General Public License for more details.
  12. You should have received a copy of the GNU Affero General Public License
  13. along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
  14. -->
  15. <template>
  16. <div class="hello">
  17. <h1>{{ msg }}</h1>
  18. <router-link to="battlegrounds">Go to selector</router-link>
  19. <h2>Essential Links</h2>
  20. <ul>
  21. <li><a href="https://vuejs.org" target="_blank" rel="noopener">Core Docs</a></li>
  22. <li><a href="https://forum.vuejs.org" target="_blank" rel="noopener">Forum</a></li>
  23. <li><a href="http://chat.vuejs.org/" target="_blank" rel="noopener">Vue Community Chat</a></li>
  24. <li><a href="https://twitter.com/vuejs" target="_blank" rel="noopener">Twitter</a></li>
  25. <li><a href="http://vuejs-templates.github.io/webpack/" target="_blank" rel="noopener">Docs for This Template</a></li>
  26. </ul>
  27. <h2>Ecosystem</h2>
  28. <ul>
  29. <li><a href="http://router.vuejs.org/" target="_blank" rel="noopener">vue-router</a></li>
  30. <li><a href="http://vuex.vuejs.org/" target="_blank" rel="noopener">vuex</a></li>
  31. <li><a href="http://vue-loader.vuejs.org/" target="_blank" rel="noopener">vue-loader</a></li>
  32. <li><a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">awesome-vue</a></li>
  33. </ul>
  34. </div>
  35. </template>
  36. <script>
  37. export default {
  38. name: 'hello',
  39. data () {
  40. return {
  41. msg: 'Welcome to Your Vue.js PWA'
  42. }
  43. }
  44. }
  45. </script>
  46. <!-- Add "scoped" attribute to limit CSS to this component only -->
  47. <style lang="sass" scoped>
  48. h1, h2
  49. font-weight: normal
  50. ul
  51. list-style-type: none
  52. padding: 0
  53. li
  54. display: inline-block
  55. margin: 0 10px
  56. a
  57. color: #35495E
  58. </style>