溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

詳解Vue中使用插槽(slot)、聚類(lèi)插槽

發(fā)布時(shí)間:2020-10-20 16:22:28 來(lái)源:腳本之家 閱讀:176 作者:Black Mamba. 欄目:web開(kāi)發(fā)

一、基本的插槽

這里總結(jié)兩點(diǎn)

  1. 如果不在子組件中使用插槽(slot),那么在子組件中寫(xiě)任何代碼都是無(wú)效的的,不會(huì)顯示
  2. (插槽默認(rèn)值)如果子組件中沒(méi)有插入任何代碼的話就會(huì)顯示組件插槽中的內(nèi)容

slot 代表父組件往子組件中 插入的標(biāo)簽
這里就代表組件子組件中的 

<p>Dell</p>
<child>
<p>Dell</p>
</child>

這里如果是這樣的

<child>	</child>	

就會(huì)顯示 <slot>默認(rèn)內(nèi)容</slot>中的默認(rèn)內(nèi)容 

二、聚類(lèi)插槽

1、如果不在子組件中使用插槽(slot),那么在子組件中寫(xiě)任何代碼都是無(wú)效的的,不會(huì)顯示

2、(插槽默認(rèn)值)如果子組件中沒(méi)有插入任何代碼的話就會(huì)顯示組件插槽中的內(nèi)容

這里如果是這樣的

<child> </child> 

就會(huì)顯示<slot>默認(rèn)內(nèi)容</slot>中的 默認(rèn)內(nèi)容

3、聚類(lèi)插槽

子組件這么寫(xiě):

template:`<div>
<slot>默認(rèn)內(nèi)容</slot>
<p>content</p>
<slot>默認(rèn)內(nèi)容</slot>
</div>

然后這么引用:

<child>	
<div>header</div>				
<div>footer</div>
</child>

就會(huì)發(fā)現(xiàn)結(jié)果是

header
footer
content
header
 footer

這個(gè)不是我的本意,那么怎么辦,這里就引入了聚類(lèi)插槽
子組件:

template:`<div>
<slot name='header'>默認(rèn)內(nèi)容</slot>
<p>content</p>
<slot name='footer'>默認(rèn)內(nèi)容</slot>
</div>`

子組件引用:

<child>
<div slot='header'>header</div>
<div slot='footer'>footer</div>
</child>

不難發(fā)現(xiàn)給每個(gè)想要指定的子組件插槽添加 name屬性,然后在引用中 slot中明確 是哪個(gè)即可也可以理解為引用中是用了兩個(gè)插槽同時(shí),默認(rèn)內(nèi)容同時(shí)適用在每個(gè)插槽

三、作用域插槽

這個(gè)是普通插槽的Demo

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>Vue中使用插槽(slot)</title>
	<script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script>
</head>
<body>
	<div id="root">
		<!-- 
			1、如果不在子組件中使用插槽(slot),那么在子組件中寫(xiě)任何代碼都是無(wú)效的的,不會(huì)顯示
			2、(插槽默認(rèn)值)如果子組件中沒(méi)有插入任何代碼的話就會(huì)顯示組件插槽中的內(nèi)容 
			這里如果是這樣的
				<child>
				</child>	
			就會(huì)顯示 <slot>默認(rèn)內(nèi)容</slot>中的	
				默認(rèn)內(nèi)容	
		-->
		<child>
			<p>Dell</p>
		</child>
	</div>

	<script type="text/javascript">
		Vue.component('child',{
			/*
				slot 代表 父組件往子組件中 插入的標(biāo)簽
				這里就代表 組件子組件中的	<p>Dell</p>
					<child>
						<p>Dell</p>
					</child>
			*/
			template:`<div>
						<slot>默認(rèn)內(nèi)容</slot>
					 </div>`
		});

		var vm = new Vue({
			el:'#root',

		});
	</script>
</body>
</html>

這個(gè)是聚類(lèi)插槽的Demo

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>Vue中使用插槽(slot)</title>
	<script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script>
</head>
<body>
	<div id="root">
		<!-- 
			1、如果不在子組件中使用插槽(slot),那么在子組件中寫(xiě)任何代碼都是無(wú)效的的,不會(huì)顯示
			2、(插槽默認(rèn)值)如果子組件中沒(méi)有插入任何代碼的話就會(huì)顯示組件插槽中的內(nèi)容 
			這里如果是這樣的
				<child>
				</child>	
			就會(huì)顯示 <slot>默認(rèn)內(nèi)容</slot>中的	
				默認(rèn)內(nèi)容	
			3、聚類(lèi)插槽
			子組件這么寫(xiě):
				template:`<div>
					<slot>默認(rèn)內(nèi)容</slot>
					<p>content</p>
					<slot>默認(rèn)內(nèi)容</slot>
				 </div>`	
			然后這么引用:
					<child>
						<div>header</div>
						<div>footer</div>
					</child>
			就會(huì)發(fā)現(xiàn)結(jié)果是
				header
				footer
				content

				header
				footer
			這個(gè)不是我的本意,那么怎么辦,這里就引入了聚類(lèi)插槽
			子組件:
				template:`<div>
						<slot name='header'>默認(rèn)內(nèi)容</slot>
						<p>content</p>
						<slot name='footer'>默認(rèn)內(nèi)容</slot>
					 </div>`
			子組件引用:
				<child>
					<div slot='header'>header</div>
					<div slot='footer'>footer</div>
				</child>
			不難發(fā)現(xiàn)給每個(gè)想要指定的子組件插槽添加 name屬性,
			然后在引用中 slot中明確 是哪個(gè)即可
			也可以理解為引用中是用了兩個(gè)插槽
			同時(shí),默認(rèn)內(nèi)容同時(shí)適用在每個(gè)插槽

		-->
		<child>
			<div slot='header'>default header</div>
			<div slot='footer'>default footer</div>
		</child>
	</div>

	<script type="text/javascript">
		Vue.component('child',{
			/*
				slot 代表 父組件往子組件中 插入的標(biāo)簽
				這里就代表 組件子組件中的	<p>Dell</p>
					<child>
						<p>Dell</p>
					</child>
			*/
			template:`<div>
						<slot name='header'>默認(rèn)內(nèi)容</slot>
						<p>content</p>
						<slot name='footer'>默認(rèn)內(nèi)容</slot>
					 </div>`
		});

		var vm = new Vue({
			el:'#root',

		});
	</script>
</body>
</html>

以上所述是小編給大家介紹的Vue中使用插槽(slot)、聚類(lèi)插槽詳解整合,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI