舉個例子,好比我寫了一個能夠實現條紋相間的列表組件,發佈後,使用者能夠自定義每一行的內容或樣式(普通的slot就能夠完成這個工做)。而做用域插槽的關鍵之處就在於,父組件能接收來自子組件的slot傳遞過來的參數,具體看案例和註釋。css
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Vue做用域插槽</title> <script src="https://cdn.bootcss.com/vue/2.3.4/vue.js"></script> </head> <body> <div id="app2"> <!-- 組件使用者只需傳遞users數據便可 --> <my-stripe-list :items="users" odd-bgcolor="#D3DCE6" even-bgcolor="#E5E9F2"> <!-- props對象接收來自子組件slot的$index參數 --> <template slot="cont" scope="props"> <span>{{users[props.$index].id}}</span> <span>{{users[props.$index].name}}</span> <span>{{users[props.$index].age}}</span> <!-- 這裏能夠自定[編輯][刪除]按鈕的連接和樣式 --> <a :href="'#edit/id/'+users[props.$index].id">編輯</a> <a :href="'#del/id/'+users[props.$index].id">刪除</a> </template> </my-stripe-list> </div> <script> Vue.component('my-stripe-list', { /*slot的$index能夠傳遞到父組件中*/ template: ` <div> <div v-for="(item, index) in items" style="line-height:2.2;" :style="index % 2 === 0 ? 'background:'+oddBgcolor : 'background:'+evenBgcolor"> <slot name="cont" :$index="index"></slot> </div> </div> `, props: { items: Array, oddBgcolor: String, evenBgcolor: String } }); new Vue({ el: '#app2', data: { users: [ {id: 1, name: '張三', age: 20}, {id: 2, name: '李四', age: 22}, {id: 3, name: '王五', age: 27}, {id: 4, name: '張龍', age: 27}, {id: 5, name: '趙虎', age: 27} ] } }); </script> </body> </html>