Timers and other features for Heroes of the Storm
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

31 linhas
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>