-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes.js
34 lines (32 loc) · 848 Bytes
/
routes.js
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
32
33
34
// Set up our routes
import Overall from './components/Main/Content/Overview/AllOverall.vue'
import Futures from './components/Main/Content/Futures/AllFutures.vue'
import Americas from './components/Main/Content/Americas/AllAmericas.vue'
import EMEA from './components/Main/Content/EMEA/AllEmea.vue'
import APAC from './components/Main/Content/APAC/AllApac.vue'
export const routes = [
{
path: '/',
component: Overall
},
{
path: '/stocks',
component: Overall
},
{
path: '/futures',
component: Futures
},
{
path: '/world-indexes/americas',
component: Americas
},
{
path: '/world-indexes/europe-africa-middle-east',
component: EMEA
},
{
path:'/world-indexes/asia-pacific',
component: APAC
}
]