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.
 
 
 
 
 

23 lines
373 B

  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. import Hello from '@/components/Hello'
  4. import MapSelector from '@/components/MapSelector'
  5. Vue.use(Router)
  6. export default new Router({
  7. routes: [
  8. {
  9. path: '/',
  10. name: 'Hello',
  11. component: Hello
  12. },
  13. {
  14. path: 'maps',
  15. name: 'Map selector',
  16. component: MapSelector
  17. }
  18. ]
  19. })