PluginProbe
Plugin Detective – Troubleshooting Conflicts / 1.1.4
Plugin Detective – Troubleshooting Conflicts v1.1.4
1.2.35 1.2.33 1.2.32 1.2.31 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2 1.2.1 1.2.10 1.2.12 1.2.13 1.2.14 1.2.16 1.2.19 1.2.20 1.2.22 1.2.23 1.2.24 All 54 releases
plugin-detective / troubleshoot / app / src / router / index.js

index.js in Plugin Detective – Troubleshooting Conflicts 1.1.4, at troubleshoot/app/src/router/index.js

46 lines 994 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import Vue from 'vue'
2 import Router from 'vue-router'
3 import Hello from '@/components/Hello'
4 import FindProblem from '@/components/FindProblem'
5 import Witnesses from '@/components/Witnesses'
6 import Interrogating from '@/components/Interrogating'
7 import Test from '@/components/Test'
8 import Complete from '@/components/Complete'
9
10 Vue.use(Router)
11
12 export default new Router({
13 routes: [
14 {
15 path: '/',
16 name: 'Hello',
17 component: Hello
18 },
19 {
20 path: '/find-the-problem',
21 name: 'Find the Problem',
22 component: FindProblem
23 },
24 {
25 path: '/key-witnesses',
26 name: 'Witnesses',
27 component: Witnesses
28 },
29 {
30 path: '/interrogating',
31 name: 'Interrogating',
32 component: Interrogating
33 },
34 {
35 path: '/test',
36 name: 'Test',
37 component: Test
38 },
39 {
40 path: '/investigation-complete',
41 name: 'Complete',
42 component: Complete
43 }
44 ]
45 })
46