一、深度作用選擇器( >>> )
嚴格來說,這個應該是vue-loader的功能。“vue-loader”: “^12.2.0”
在專案開發中,如果業務比較複雜,特別像中臺或B端功能頁面都不可避免的會用到第三方元件庫,產品有時會想對這些元件進行一些UI方面的定製。如果這些元件採用的是有作用域的CSS,父元件想要定製第三方元件的樣式就比較麻煩了。
深度作用選擇器( >>>
操作符)可以助你一臂之力。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<template> <div> <h1 class="child-title"> 如果你希望 scoped 樣式中的一個選擇器能夠作用得“更深”,例如影響子元件,你可以使用 >>> 操作 </h1> </div> </template> <script> export default { name: 'child', data() { return { } } } </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped> .child-title { font-size: 12px; } </style> |
上面的child元件中 .child-title 的作用域CSS設定字型大小為12px,現在想在父元件中定製為大小20px,顏色為紅色。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<template> <div> <child class="parent-custom"></child> </div> </template> <script> import Child from './child'; export default { name: 'parent', components:{ Child }, data() { return { } } } </script> <style> .parent-custom >>> .child-title { font-size:20px; color: red; } </style> |
效果妥妥的。但是別高興太早,注意到上面的<style>使用的是純css語法,如果採用less語法,你可能會收到一條webpack的報錯資訊。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<style lang="less"> .parent-custom { >>> .child-title { font-size:20px; color: red; } } </style> ERROR in ./~/css-loader!./~/vue-loader/lib/style-compiler?{"vue":true,"id":"data-v-960c5412","scoped":false,"hasInlineConfig":false}!./~/postcss-loader!./~/less-loader!./~/vue-loader/lib/selector.js?type=styles&index=0!./src/components/parent.vue Module build failed: Unrecognised input @ /src/components/parent.vue (line 22, column 6) near lines: .parent-custom { >>> .child-title { font-size:20px; |
上面的報錯資訊其實是less語法不認識 >>>。(less的github issue上有人提議支援>>>操作符,但本文使用的v2.7.3會有這個問題)
解決方案是採用的less的轉義(scaping)和變數插值(Variable Interpolation)
1 2 3 4 5 6 7 8 9 |
<style lang="less"> @deep: ~'>>>'; .parent-custom { @{deep} .child-title { font-size:20px; color: red; } } </style> |
對於其他的css前處理器,因為沒怎麼用,不妄加評論,照搬一下文件的話。
有些像 Sass 之類的前處理器無法正確解析 >>>。這種情況下你可以使用 /deep/ 操作符取而代之——這是一個 >>> 的別名,同樣可以正常工作。
二、元件配置項inheritAttrs、元件例項屬性$attrs和$listeners
元件配置項 inheritAttrs
我們都知道假如使用子元件時傳了a,b,c三個prop,而子元件的props選項只宣告瞭a和b,那麼渲染後c將作為html自定義屬性顯示在子元件的根元素上。
如果不希望這樣,可以設定子元件的配置項 inheritAttrs:false,根元素就會乾淨多了。
1 2 3 4 5 6 7 |
<script> export default { name: 'child', props:['a','b'], inheritAttrs:false } </script> |
元件例項屬性$attrs和$listeners
先看看vm.$attrs文件上是怎麼說的
vm.$attrs
型別:{ [key: string]: string }
只讀
包含了父作用域中不作為 prop 被識別 (且獲取) 的特性繫結 (class 和 style 除外)。當一個元件沒有宣告任何 prop 時,這裡會包含所有父作用域的繫結 (class 和 style 除外),並且可以通過 v-bind=”$attrs” 傳入內部元件——在建立高階別的元件時非常有用。
歸納起來就是兩點:
- vm.$attrs是元件的內建屬性,值是父元件傳入的所有prop中未被元件宣告的prop(class和style除外)。
還是以前面的child元件舉例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
//parent.vue <template> <div> <child class="parent-custom" a="a" b="b" c="c"></child> </div> </template> //child.vue <script> export default { name: 'child', props:['a','b'], inheritAttrs:false, mounted(){ //控制檯輸出: //child:$attrs: {c: "c"} console.log('child:$attrs:',this.$attrs); } } </script> |
- 元件可以通過在自己的子元件上使用v-bind=”$attrs”,進一步把值傳給自己的子元件。也就是說子元件會把$attrs的值當作傳入的prop處理,同時還要遵守第一點的規則。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
//parent.vue <template> <div> <child a="a" b="b" c="c"></child> </div> </template> //child.vue <template> <div> <grand-child v-bind="$attrs" d="d"></grand-child> </div> </template> <script> export default { name: 'child', props:['a','b'], inheritAttrs:false } </script> //grandchild.vue <script> export default { name: 'grandchild', props:[], //props:['c'], inheritAttrs:false, mounted(){ //控制檯輸出: //grandchild:$attrs: {d: "d", c: "c"} console.log('grandchild:$attrs:',this.$attrs); //如果props:['c'] //控制檯輸出: //grandchild:$attrs: {d: "d"} }, } </script> |
vm.$listeners
型別:{ [key: string]: Function | Array }
只讀
包含了父作用域中的 (不含 .native 修飾器的) v-on 事件監聽器。它可以通過 v-on=”$listeners” 傳入內部元件——在建立更高層次的元件時非常有用。
歸納起來也是兩點:
- vm.$listeners是元件的內建屬性,它的值是父元件(不含 .native 修飾器的) v-on 事件監聽器。
- 元件可以通過在自己的子元件上使用v-on=”$listeners”,進一步把值傳給自己的子元件。如果子元件已經繫結$listener中同名的監聽器,則兩個監聽器函式會以冒泡的方式先後執行。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
//parent.vue <template> <div> <child @update="onParentUpdate"></child> </div> </template> <script> export default { name: 'parent', components:{ Child }, methods:{ onParentUpdate(){ console.log('parent.vue:onParentUpdate') } } } </script> //child.vue <template> <div> <grand-child @update="onChildUpdate" v-on="$listeners"></grand-child> </div> </template> <script> export default { name: 'child', components:{ GrandChild }, methods:{ onChildUpdate(){ console.log('child.vue:onChildUpdate') } } } </script> //grandchild.vue <script> export default { name: 'grandchild', mounted(){ //控制檯輸出: //grandchild:$listeners: {update: ƒ} console.log('grandchild:$listeners:',this.$listeners); //控制檯輸出: //child.vue:onChildUpdate //parent.vue:onParentUpdate this.$listeners.update(); } } </script> |
三、元件選項 provide/inject
如果列舉Vue元件之間的通訊方法,一般都會說通過prop,自定義事件,事件匯流排,還有Vuex。
provide/inject提供了另一種方法。
這對選項需要一起使用,以允許一個祖先元件向其所有子孫後代注入一個依賴,不論元件層次有多深,並在起上下游關係成立的時間裡始終生效。
如果你熟悉 React,這與 React 的上下文特性(context)很相似。
不過需要注意的是,在文件中並不建議直接用於應用程式中。
provide 和 inject 主要為高階外掛/元件庫提供用例。並不推薦直接用於應用程式程式碼中。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
//parent.vue <template> <div> <child></child> </div> </template> <script> export default { name: 'parent', provide: { data: 'I am parent.vue' }, components:{ Child } } </script> //child.vue <template> <div> <grand-child></grand-child> </div> </template> <script> export default { name: 'child', components:{ GrandChild } } </script> //grandchild.vue <script> export default { name: 'grandchild', inject: ['data'], mounted(){ //控制檯輸出: //grandchild:inject: I am parent.vue console.log('grandchild:inject:',this.data); } } </script> |
provide 選項應該是一個物件或返回一個物件的函式。該物件包含可注入其子孫的屬性。
inject 選項應該是一個字串陣列或一個物件,該物件的 key 代表了本地繫結的名稱,value 就為provide中要取值的key。
在2.5.0+時對於inject選項為物件時,還可以指定from來表示源屬性,default指定預設值(如果是非原始值要使用一個工廠方法)。
1 2 3 4 5 6 7 8 9 |
const Child = { inject: { foo: { from: 'bar', default: 'foo' //default: () => [1, 2, 3] } } } |
四、作用域插槽 slot-scope
在 2.5.0+,slot-scope 不再限制在 <template> 元素上使用,而可以用在插槽內的任何元素或元件上。
作用域插槽的文件說明很詳細。下面舉個例子來展示下應用場景。
可以看出列表頁和編輯頁對於資料的展示是一樣的,唯一的區別是在不同頁面對於資料有不同的處理邏輯。相同的資料展示這塊就可抽取成一個元件,不同的地方則可以藉助作用域插槽實現。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
//data-show.vue <template> <div> <ul> <li v-for="item in list"> <span>{{item.title}}</span> <slot v-bind:item="item"> </slot> </li> </ul> </div> </template> //list.vue <template> <p>列表頁</p> <data-show :list="list"> <template slot-scope="slotProps"> <span v-if="slotProps.item.complete">✓</span> <span v-else>x</span> </template> </data-show> </template> //edit.vue <template> <p>編輯頁</p> <data-show :list="list"> <template slot-scope="slotProps"> <a v-if="slotProps.item.complete">檢視</a> <a v-else>修改</a> </template> </data-show> </template> |
五、Vue的錯誤捕獲
- 全域性配置errorHandler
從2.2.0起,這個鉤子也會捕獲元件生命週期鉤子裡的錯誤。
從 2.4.0 起這個鉤子也會捕獲 Vue 自定義事件處理函式內部的錯誤了。
更詳細的說明可以檢視文件errorHandler
- 生命週期鉤子errorCaptured
更詳細的說明可以檢視文件errorCaptured
如果熟悉React的話,會發現它跟錯誤邊界(Error Boundaries)的概念很像,實際上也確實是這麼用的。
在文件Error Handling with errorCaptured Hook就舉了一個典型的例子
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
Vue.component('ErrorBoundary', { data: () => ({ error: null }), errorCaptured (err, vm, info) { this.error = `${err.stack}nnfound in ${info} of component` return false }, render (h) { if (this.error) { return h('pre', { style: { color: 'red' }}, this.error) } // ignoring edge cases for the sake of demonstration return this.$slots.default[0] } }) |
1 2 3 |
<error-boundary> <another-component/> </error-boundary> |
需要強調的是errorCaptured並不能捕獲自身錯誤和非同步錯誤(比如網路請求,滑鼠事件等產生的錯誤)。
In 2.5 we introduce the new errorCaptured hook. A component with this hook captures all errors (excluding those fired in async callbacks) from its child component tree (excluding itself).