vue 路由 以及默認路由跳轉
阿新 • • 發佈:2018-11-26
復制 import router dir 默認 outer path ejs 模板
https://router.vuejs.org/
vue路由配置:
1.安裝
npm install vue-router --save / cnpm install vue-router --save
2、引入並 Vue.use(VueRouter) (main.js)
import VueRouter from ‘vue-router‘
Vue.use(VueRouter)
3、配置路由
1、創建組件 引入組件
2、定義路由 (建議復制s)
const routes = [
{ path: ‘/foo‘, component: Foo },
{ path: ‘/bar‘, component: Bar },
{ path: ‘*‘, redirect: ‘/home‘ } /*默認跳轉路由*/
]
3、實例化VueRouter
const router = new VueRouter({
routes // (縮寫)相當於 routes: routes
})
4、掛載
new Vue({
el: ‘#app‘,
router,
render: h => h(App)
})
5 、根組件的模板裏面放上這句話 <router-view></router-view>
6、路由跳轉
<router-link to="/foo">Go to Foo</router-link>
<router-link to="/bar">Go to Bar</router-link>
vue 路由 以及默認路由跳轉