blob: c9b72569d30c4e3a40943e16c40174096760d48f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* Authors: see git history
*
* Copyright (c) 2010 Authors
* Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
*
*/
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/simulator',
name: 'simulator',
component: require('@/components/Simulator').default
},
{
path: '/install',
name: 'install',
component: require('@/components/InstallPalettes').default
},
{
path: '*',
redirect: '/'
}
]
})
|