您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“如何使用vue slot分發(fā)內(nèi)容”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“如何使用vue slot分發(fā)內(nèi)容”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。
一、什么是slot
在使用組件時(shí),我們常常要像這樣組合它們:
<app> <app-header></app-header> <app-footer></app-footer> </app>
當(dāng)需要讓組件組合使用,混合父組件的內(nèi)容與子組件的模板時(shí),就會(huì)用到slot , 這個(gè)過(guò)程叫作內(nèi)容分發(fā)( transclusion )。
注意兩點(diǎn):
1.< app>組件不知道它的掛載點(diǎn)會(huì)有什么內(nèi)容。掛載點(diǎn)的內(nèi)容是由<app >的父組件決定的。
2.<app> 組件很可能有它自己的模板。
props 傳遞數(shù)據(jù)、events 觸發(fā)事件和slot 內(nèi)容分發(fā)就構(gòu)成了Vue 組件的3 個(gè)API 來(lái)源,再?gòu)?fù)雜的組件也是由這3 部分構(gòu)成的。
二、作用域
<child-component> {{ message }} </child-component>
這里的message 就是一個(gè)slot ,但是它綁定的是父組件的數(shù)據(jù),而不是組件<child-component>的數(shù)據(jù)。
父組件模板的內(nèi)容是在父組件作用域內(nèi)編譯,子組件模板的內(nèi)容是在子組件作用域內(nèi)編譯。如:
<div id="app15"> <child-component v-show="showChild"></child-component> </div> Vue.component('child-component',{ template: '<div>子組件</div>' }); var app15 = new Vue({ el: '#app15', data: { showChild: true } });
這里的狀態(tài)showChild 綁定的是父組件的數(shù)據(jù),如果想在子組件上綁定,那應(yīng)該是:
<div id="app15"> <child-component></child-component> </div> Vue.component('child-component',{ template: '<div v-show="showChild">子組件</div>', data: function(){ return { showChild: true } } });
因此, slot 分發(fā)的內(nèi)容,作用域是在父組件上的。
三、slot用法
3.1 單個(gè)slot
在子組件內(nèi)使用特殊的<slot>元素就可以為這個(gè)子組件開(kāi)啟一個(gè)slot(插槽),在父組件模板里,插入在子組件標(biāo)簽內(nèi)的所有內(nèi)容將替代子組件的<slot> 標(biāo)簽及它的內(nèi)容。
<div id="app16"> <my-component16> <p>分發(fā)的內(nèi)容</p> <p>更多分發(fā)的內(nèi)容</p> </my-component16> </div> Vue.component('my-component16',{ template: '<div>' + '<slot><p>如果父組件沒(méi)有插入內(nèi)容,我將作為默認(rèn)出現(xiàn)<</p></slot>' + //預(yù)留的slot插槽 '</div>' }); var app16 = new Vue({ el: '#app16' });
渲染結(jié)果為:
<div id=”app16”> <div> <p>分發(fā)的內(nèi)容<p> <p>更多分發(fā)的內(nèi)容<p> </div> </div>
子組件child-component
的模板內(nèi)定義了一個(gè)<slot>元素,并且用一個(gè)<p>作為默認(rèn)的內(nèi)容,在父組件沒(méi)有使用slot 時(shí),會(huì)渲染這段默認(rèn)的文本;如果寫(xiě)入了slot, 那就會(huì)替換整個(gè)<slot> 。
3.2具名slot
給<slot> 元素指定一個(gè)name 后可以分發(fā)多個(gè)內(nèi)容,具名Slot 可以與單個(gè)slot 共存。
<div id="app17"> <my-component17> <h4 slot="header">標(biāo)題</h4> <p>正文內(nèi)容</p> <p>更多正文內(nèi)容</p> <h4 slot="footer">底部信息</h4> </my-component17> </div> Vue.component('my-component17',{ template: '<div class="container">' + '<div class="header">' + '<slot name="header"></slot>' + '</div>' + '<div class="main">' + '<slot></slot>' + '</div>'+ '<div class="footer">' + '<slot name="footer"></slot>' + '</div>'+ '</div>' }); var app17 = new Vue({ el: '#app17' });
渲染結(jié)果為:
<div id="app17"> <div class="container"> <div class="header"> <h4>標(biāo)題</h4></div> <div class="main"> <p>正文內(nèi)容</p> <p>更多正文內(nèi)容</p> </div> <div class="footer"> <h4>底部信息</h4> </div> </div> </div>
子組件內(nèi)聲明了3 個(gè)<s lot>元素,其中在<div class=” main >內(nèi)的<slot> 沒(méi)有使用name 特性,它將作為默認(rèn)slot 出現(xiàn),父組件沒(méi)有使用slot 特性的元素與內(nèi)容都將出現(xiàn)在這里。
如果沒(méi)有指定默認(rèn)的匿名slot ,父組件內(nèi)多余的內(nèi)容片段都將被拋棄。
四、作用域插槽
作用域插槽是一種特殊的slot ,使用一個(gè)可以復(fù)用的模板替換己渲染元素。
看一個(gè)例子:
<div id="app18"> <my-component18> <template scope="props"> <p>來(lái)自父組件的內(nèi)容</p> <p>{{props.msg}}</p> </template> </my-component18> </div> Vue.component('my-component18',{ template: '<div class="container"><slot msg="來(lái)自子組件的內(nèi)容"></slot></div>' }); var app18 = new Vue({ el: '#app18' });
觀察子組件的模板,在<slot>元素上有一個(gè)類(lèi)似props 傳遞數(shù)據(jù)給組件的寫(xiě)法msg=” xxx ”,將數(shù)據(jù)傳到了插槽。
父組件中使用了<template>元素,而且擁有一個(gè)scope=”props ”
的特性,這里的props只是一個(gè)臨時(shí)變量,就像v-for= ” item in items
里面的item 一樣,template 內(nèi)可以通過(guò)臨時(shí)變量props訪問(wèn)來(lái)自子組件插槽的數(shù)據(jù)msg 。
下面看下Vue組件中slot的用法
主要是讓組件的可擴(kuò)展性更強(qiáng)。
1. 使用匿名slot
2. 給slot加個(gè)名字
讀到這里,這篇“如何使用vue slot分發(fā)內(nèi)容”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。