Timers and other features for Heroes of the Storm
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Hello.vue 1.4 KiB

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