Timers and other features for Heroes of the Storm
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

44 righe
845 B

  1. <template>
  2. <div class="map-selector">
  3. <h1 class="map-selector__title">Map Selector</h1>
  4. <ul>
  5. <li v-for="map in maps"><a>{{ map.name }}</a></li>
  6. </ul>
  7. </div>
  8. </template>
  9. <script type="text/javascript">
  10. const MAPS = {
  11. alteracPass: {
  12. name: 'Alterac Pass'
  13. },
  14. battlefieldOfEternity: {
  15. name: 'Battlefield of Eternity'
  16. },
  17. blackheartSBay: {
  18. name: "Blackheart's Bay"
  19. },
  20. gardenOfTerror: {},
  21. HanamuraTemple: {},
  22. VolskayaFoundry: {},
  23. HauntedMines: {},
  24. TowerOfDoom: {},
  25. InfernalShrines: {},
  26. TombOfTheSpiderQueen: {},
  27. SkyTemple: {},
  28. DragonShire: {},
  29. CursedHollow: {},
  30. BraxisHoldout: {},
  31. WarheadJunction: {}
  32. }
  33. module.exports = {
  34. name: 'MapSelector',
  35. data: function () {
  36. return {
  37. maps: MAPS
  38. }
  39. }
  40. }
  41. </script>