|
@@ -2,6 +2,7 @@ import Vue from 'vue'
|
|
|
import VueRouter from 'vue-router'
|
|
|
import HomeView from '../views/HomeView.vue'
|
|
|
import AboutView from '../views/AboutView.vue'
|
|
|
+import Details from '../views/Details.vue'
|
|
|
|
|
|
Vue.use(VueRouter)
|
|
|
|
|
@@ -14,6 +15,10 @@ const routes = [
|
|
|
path:'/about',
|
|
|
name:'aboutview',
|
|
|
component:AboutView
|
|
|
+ },{
|
|
|
+ path:'/details',
|
|
|
+ name:'details',
|
|
|
+ component:Details
|
|
|
}
|
|
|
]
|
|
|
|