cygnal/src/router/index.js

39 lines
850 B
JavaScript
Raw Normal View History

2018-06-25 18:29:57 +02:00
import Vue from 'vue';
import Router from 'vue-router';
import About from '@/views/About.vue';
2018-06-25 18:29:57 +02:00
import Map from '@/views/Map.vue';
import Onboarding from '@/views/Onboarding.vue';
import Settings from '@/views/Settings.vue';
2018-06-25 18:29:57 +02:00
Vue.use(Router);
export default new Router({
routes: [
{
path: '/about',
name: 'About',
component: About,
},
{
path: '/map=:zoom/:lat/:lng',
name: 'SharedMap',
component: Map,
},
2018-06-25 18:29:57 +02:00
{
path: '/map',
2018-06-25 18:29:57 +02:00
name: 'Map',
component: Map,
},
{
path: '/',
name: 'Onboarding',
component: Onboarding,
},
2018-06-25 18:29:57 +02:00
{
path: '/settings',
name: 'Settings',
component: Settings,
2018-06-25 18:29:57 +02:00
},
],
});