中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-10-20 16:22:28 來源:腳本之家 閱讀:178 作者:Black Mamba. 欄目:web開發

一、基本的插槽

這里總結兩點

  1. 如果不在子組件中使用插槽(slot),那么在子組件中寫任何代碼都是無效的的,不會顯示
  2. (插槽默認值)如果子組件中沒有插入任何代碼的話就會顯示組件插槽中的內容

slot 代表父組件往子組件中 插入的標簽
這里就代表組件子組件中的 

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

這里如果是這樣的

<child>	</child>	

就會顯示 <slot>默認內容</slot>中的默認內容 

二、聚類插槽

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

2、(插槽默認值)如果子組件中沒有插入任何代碼的話就會顯示組件插槽中的內容

這里如果是這樣的

<child> </child> 

就會顯示<slot>默認內容</slot>中的 默認內容

3、聚類插槽

子組件這么寫:

template:`<div>
<slot>默認內容</slot>
<p>content</p>
<slot>默認內容</slot>
</div>

然后這么引用:

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

就會發現結果是

header
footer
content
header
 footer

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

template:`<div>
<slot name='header'>默認內容</slot>
<p>content</p>
<slot name='footer'>默認內容</slot>
</div>`

子組件引用:

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

不難發現給每個想要指定的子組件插槽添加 name屬性,然后在引用中 slot中明確 是哪個即可也可以理解為引用中是用了兩個插槽同時,默認內容同時適用在每個插槽

三、作用域插槽

這個是普通插槽的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),那么在子組件中寫任何代碼都是無效的的,不會顯示
			2、(插槽默認值)如果子組件中沒有插入任何代碼的話就會顯示組件插槽中的內容 
			這里如果是這樣的
				<child>
				</child>	
			就會顯示 <slot>默認內容</slot>中的	
				默認內容	
		-->
		<child>
			<p>Dell</p>
		</child>
	</div>

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

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

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

這個是聚類插槽的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),那么在子組件中寫任何代碼都是無效的的,不會顯示
			2、(插槽默認值)如果子組件中沒有插入任何代碼的話就會顯示組件插槽中的內容 
			這里如果是這樣的
				<child>
				</child>	
			就會顯示 <slot>默認內容</slot>中的	
				默認內容	
			3、聚類插槽
			子組件這么寫:
				template:`<div>
					<slot>默認內容</slot>
					<p>content</p>
					<slot>默認內容</slot>
				 </div>`	
			然后這么引用:
					<child>
						<div>header</div>
						<div>footer</div>
					</child>
			就會發現結果是
				header
				footer
				content

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

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

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

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

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

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安阳县| 武山县| 苏尼特左旗| 桦川县| 乌拉特中旗| 深水埗区| 大余县| 鸡东县| 高陵县| 巴青县| 龙海市| 四会市| 车致| 曲阳县| 精河县| 玛纳斯县| 探索| 延川县| 宝坻区| 庆阳市| 道真| 建瓯市| 卢龙县| 苍山县| 江华| 吉安市| 石河子市| 温州市| 栖霞市| 兰坪| 乐山市| 清涧县| 罗源县| 察隅县| 林芝县| 日土县| 武鸣县| 沁源县| 津南区| 泌阳县| 恭城|