將vue-router和vuex進行整理,以便於查閱和加深記憶。vue
const routes=[ //點擊主頁展現home組件內容 {path:'/',component:Home}, {path:'/menu',component:Menu}, ] //實例化一個router const router=new VueRouter({ routes, mode:'history' }) 在vue實例中引用一下 new Vue({ el: '#app', router, })
//childern屬性下面寫配置 { path: '/about', name: "aboutLink", redirect: '/about/contact', component: About, children: [ { path: '/about/contact', name: "contactLink", redirect: '/person', component: Contact, children: [ {path: '/phone', name: "phoneLink", component: PhoneNumber}, {path: '/person', name: "personLink", component: PesonName}, ] }, {path: '/history', name: "historyLink", component: History}, {path: '/orderingGuide', name: "orderingGuideLink", component: OrderingGuide}, {path: '/delivery', name: "deliveryLink", component: Delivery}, ] },
//添加name屬性,在路由中定義多個組件 components: { default:Home,//設置默認Home組件 'orderingGuide':OrderingGuide, 'delivery':Delivery, 'history':History }
router.beforeEach((to, from, next) => { // 此處寫條件 //to:即將要進入的路由目標對象 //from:當前導航正離開的路由 //next:調用的方法 })
beforeRouteEnter (to, from, next) { // 在渲染該組件的對應路由被 confirm 前調用 // 不!能!獲取組件實例 `this` // 由於當守衛執行前,組件實例還沒被建立 next(vm => { // 經過 `vm` 訪問組件實例 }) }, beforeRouteUpdate (to, from, next) { // 在當前路由改變,可是該組件被複用時調用 // 舉例來講,對於一個帶有動態參數的路徑 /foo/:id,在 /foo/1 和 /foo/2 之間跳轉的時候, // 因爲會渲染一樣的 Foo 組件,所以組件實例會被複用。而這個鉤子就會在這個狀況下被調用。 // 能夠訪問組件實例 `this` }, beforeRouteLeave (to, from, next) { // 導航離開該組件的對應路由時調用 // 能夠訪問組件實例 `this` }