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.
 
 
 
 
 

55 lines
1.4 KiB

  1. <template>
  2. <div class="hello">
  3. <h1>{{ msg }}</h1>
  4. <a href="maps">Go to selector</a>
  5. <h2>Essential Links</h2>
  6. <ul>
  7. <li><a href="https://vuejs.org" target="_blank" rel="noopener">Core Docs</a></li>
  8. <li><a href="https://forum.vuejs.org" target="_blank" rel="noopener">Forum</a></li>
  9. <li><a href="http://chat.vuejs.org/" target="_blank" rel="noopener">Vue Community Chat</a></li>
  10. <li><a href="https://twitter.com/vuejs" target="_blank" rel="noopener">Twitter</a></li>
  11. <li><a href="http://vuejs-templates.github.io/webpack/" target="_blank" rel="noopener">Docs for This Template</a></li>
  12. </ul>
  13. <h2>Ecosystem</h2>
  14. <ul>
  15. <li><a href="http://router.vuejs.org/" target="_blank" rel="noopener">vue-router</a></li>
  16. <li><a href="http://vuex.vuejs.org/" target="_blank" rel="noopener">vuex</a></li>
  17. <li><a href="http://vue-loader.vuejs.org/" target="_blank" rel="noopener">vue-loader</a></li>
  18. <li><a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">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 PWA'
  28. }
  29. }
  30. }
  31. </script>
  32. <!-- Add "scoped" attribute to limit CSS to this component only -->
  33. <style>
  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: #35495E;
  47. }
  48. </style>