1.安裝
npm install vue-router --save
2.引入
import Router from 'vue-router'
Vue.use(Router)
3.定義并實(shí)例化路由
new Router({
? routes: [ {
? ? ? path: '/',
? ? ? name: 'xx',
? ? ? component: xx
? ? } ]
4.掛載路由
new Vue({
? el: '#app',
? router,
? components: { App },
? template: '<App/>'
})
5.動(dòng)態(tài)加載路由
<router-view />
6.跳轉(zhuǎn)
<router-link to="/">xxx</router-link>