在組件中使用 $route
會使之與其對應路由造成高度耦合,從而使組件只能在某些特定的 URL 上使用,限制了其靈活性。html
使用 props
將組件和路由解耦:vue
取代與 $route
的耦合app
const User = { template: '<div>User {{ $route.params.id }}</div>' } const router = new VueRouter({ routes: [ { path: '/user/:id', component: User } ] })
經過 props
解耦ide
const User = { props: ['id'], template: '<div>User {{ id }}</div>' } const router = new VueRouter({ routes: [ { path: '/user/:id', component: User, props: true }, // 對於包含命名視圖的路由,你必須分別爲每一個命名視圖添加 `props` 選項: { path: '/user/:id', components: { default: User, sidebar: Sidebar }, props: { default: true, sidebar: false } } ] })
這樣你即可以在任何地方使用該組件,使得該組件更易於重用和測試。函數
若是 props
被設置爲 true
,route.params
將會被設置爲組件屬性。(會掛載到 組件、.vue 文件,定義的相同名字的 props 上)測試
若是 props
是一個對象,它會被按原樣設置爲組件屬性。當 props
是靜態的時候有用。ui
const router = new VueRouter({ routes: [ { path: '/promotion/from-newsletter', component: Promotion, props: { newsletterPopup: false } } ] })
你能夠建立一個函數返回 props
。這樣你即可以將參數轉換成另外一種類型,將靜態值與基於路由的值結合等等。spa
const router = new VueRouter({ routes: [ { path: '/search', component: SearchUser, props: (route) => ({ query: route.query.q }) } ] })
URL /search?q=vue
會將 {query: 'vue'}
做爲屬性傳遞給 SearchUser
組件。code
請儘量保持 props
函數爲無狀態的,由於它只會在路由發生變化時起做用。若是你須要狀態來定義 props
,請使用包裝組件,這樣 Vue 才能夠對狀態變化作出反應。component
路由命名視圖詳見:https://router.vuejs.org/zh/guide/essentials/named-views.html
props耦合詳見:https://router.vuejs.org/zh/guide/essentials/passing-props.html