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.
 
 
 
 
 

31 lines
525 B

  1. <div class="map-selector">
  2. <h1 class="map-selector__title">Map Selector</h1>
  3. <ul>
  4. <li v-for="map in maps"><a>map.name</a></li>
  5. </ul>
  6. </div>
  7. <script type="text/javascript">
  8. const MAPS = {
  9. alteracPass: {
  10. name: 'Alterac Pass'
  11. },
  12. battlefieldOfEternity: {
  13. name: 'Battlefield of Etnernity'
  14. },
  15. blackheartSBay: {
  16. name: "Blackheart's Bay"
  17. }
  18. }
  19. module.exports = {
  20. name: 'MapSelector',
  21. data: function () {
  22. return {
  23. maps: MAPS
  24. }
  25. }
  26. }
  27. </script>