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.
 
 
 
 
 

46 lignes
1.3 KiB

  1. /*
  2. * Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
  3. *
  4. * This file is part of Nexus Timers.
  5. *
  6. * Nexus Timers is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Nexus Timers is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
  18. */
  19. import Vue from 'vue'
  20. import Router from 'vue-router'
  21. import Hello from '@/components/Hello'
  22. import TheBattlegroundSelector from '@/components/TheBattlegroundSelector'
  23. import Battleground from '@/components/Battleground'
  24. Vue.use(Router)
  25. export default new Router({
  26. routes: [
  27. {
  28. path: '/',
  29. name: 'Hello',
  30. component: Hello
  31. },
  32. {
  33. path: '/battlegrounds',
  34. component: TheBattlegroundSelector
  35. },
  36. {
  37. path: '/battleground/:battlegroundId',
  38. component: Battleground
  39. }
  40. ]
  41. })