Skip to content

Commit 82fe1ef

Browse files
committed
Moved routes to file
1 parent 2f4bba6 commit 82fe1ef

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

src/main.js

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
import Vue from 'vue'
22
import VueRouter from 'vue-router';
33
import App from './App.vue'
4-
import ProductList from './ProductList.vue';
5-
import Cart from './Cart.vue';
4+
import { routes } from './routes';
65

76
Vue.use(VueRouter);
87

98
const router = new VueRouter({
10-
routes: [
11-
{ path: '', component: ProductList },
12-
{ path: '/cart', component: Cart },
13-
{ path: '*', component: { template: '<h1>Page Not Found!</h1>' } }
14-
],
9+
routes: routes,
1510
mode: 'history'
1611
});
1712

src/routes.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import ProductList from './ProductList.vue';
2+
import Cart from './Cart.vue';
3+
4+
export const routes = [
5+
{ path: '', component: ProductList },
6+
{ path: '/cart', component: Cart },
7+
{ path: '*', component: { template: '<h1>Page Not Found!</h1>' } }
8+
];

0 commit comments

Comments
 (0)