溫馨提示×

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

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

Vue3中的插槽怎么使用

發(fā)布時(shí)間:2022-08-24 09:29:49 來源:億速云 閱讀:189 作者:iii 欄目:編程語言

本篇內(nèi)容主要講解“Vue3中的插槽怎么使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Vue3中的插槽怎么使用”吧!

Vue3中的插槽怎么使用

什么是插槽

簡(jiǎn)單來說就是子組件中的提供給父組件使用的一個(gè)坑位,用<slot></slot> 表示,父組件可以在這個(gè)坑位中填充任何模板代碼然后子組件中<slot></slot>就會(huì)被替換成這些內(nèi)容。比如一個(gè)最簡(jiǎn)單插槽例子

//父組件
<template>
  <div>
    <Child>Hello Juejin</Child>
  </div>
</template>
<script setup>
import Child from './Child.vue'
</script>

//子組件Child
<template>
    <div>
        <p>1</p>
        <slot />
        <p>2</p>
    </div>
</template>

子組件中的<slot /> 便是父組件放在子組件標(biāo)簽<Child>之間的內(nèi)容。當(dāng)然這之間你可以傳入任何代碼片段,都會(huì)被放到<slot />這個(gè)位置。

Vue3中的插槽怎么使用

同樣的你也可以在標(biāo)簽<Child>之間放入變量,比如

//父組件
<template>
  <div>
    <Child>{{ msg }}</Child>
  </div>
</template>
<script setup>
import { ref } from 'vue'
import Child from './Child.vue'
const msg = ref('Hello Juejin')
</script>

先解釋一下后面頻繁出現(xiàn)的兩個(gè)詞 插槽插槽內(nèi)容,防止后面閱讀搞混了:

Vue3中的插槽怎么使用

同樣的 插槽表示的就是這個(gè)msg變量。所以子組件 插槽是可以訪問到父組件的數(shù)據(jù)作用域,而插槽內(nèi)容是無法訪問子組件的數(shù)據(jù)(即父組件中兩個(gè)<Child>之間是不能使用子組件中的數(shù)據(jù)的),這就是所謂的渲染作用域。后面會(huì)介紹插槽插槽內(nèi)容傳參的方式

默認(rèn)內(nèi)容

在父組件沒有提供任何插槽內(nèi)容的時(shí)候,我們是可以為子組件的插槽指定默認(rèn)內(nèi)容的,比如

//子組件
<template>
    <div>
        <slot>我是默認(rèn)內(nèi)容</slot>
    </div>
</template>

//父組件1
<template>
  <div>
    <Child></Child>
  </div>
</template>
<script setup>
import Child from './Child.vue'
</script>

//父組件2
<template>
  <div>
    <Child>Hello Juejin</Child>
  </div>
</template>
<script setup>
import Child from './Child.vue'
</script>

此時(shí)父組件1展示默認(rèn)內(nèi)容

Vue3中的插槽怎么使用

父組件2展示提供的內(nèi)容

Vue3中的插槽怎么使用

具名插槽

很多時(shí)候一個(gè) 插槽滿足不了我們的需求,我們需要多個(gè) 插槽。于是就有了具名插槽,就是具有名字的 插槽。簡(jiǎn)單來說這個(gè)具名插槽的目的就是讓一個(gè)蘿卜一個(gè)坑,讓它們呆在該呆的位置去。比如帶 name 的插槽 <slot name="xx">被稱為具名插槽。沒有提供 name<slot> 會(huì)隱式地命名為“default”。在父組件中可以使用v-slot:xxx(可簡(jiǎn)寫為#xxx) 指令的 <template> 元素將目標(biāo)插槽的名字傳下去匹配對(duì)應(yīng) 插槽。比如

//子組件

<template>
    <div>
        <!-- 大蘿卜 -->
        <div>
            <slot name="bigTurnip"></slot>
        </div>
        <!-- 小蘿卜 -->
        <div>
            <slot name="smallTurnip"></slot>
        </div>
        <!-- 中蘿卜 -->
        <div>
            <slot name="midTurnip"></slot>
        </div>
    </div>
</template>

//父組件

<template>
  <div>
    <Child>
      <!-- #smallTurnip 為v-slot:smallTurnip縮寫 -->
      <template #smallTurnip>
        小蘿卜
      </template>
      <template #midTurnip>
        中蘿卜
      </template>
      <template #bigTurnip>
        大蘿卜
      </template>
    </Child>
  </div>
</template>
<script setup>
import Child from './Child.vue'
</script>

Vue3中的插槽怎么使用

所以父組件中無需在意順序,只需要寫好模板命好名,它就會(huì)自動(dòng)去到它所對(duì)應(yīng)的位置。

動(dòng)態(tài)插槽名

動(dòng)態(tài)插槽名就是插槽名變成了變量的形式,我們可以隨時(shí)修改這個(gè)變量從而展示不同的效果。它的寫法是v-slot:[變量名]或者縮寫為#[變量名]。

//父組件
<template>
  <div>
    <Child>
      <!-- 等同于#smallTurnip -->
      <template #[slotName]>
        小蘿卜
      </template>
      <template #midTurnip>
        中蘿卜
      </template>
      <template #bigTurnip>
        大蘿卜
      </template>
    </Child>
  </div>
</template>
<script setup>
import { ref } from 'vue'
import Child from './Child.vue'
const slotName = ref('smallTurnip')
</script>

作用域插槽

作用域插槽

上面說過插槽內(nèi)容是無法訪問子組件的數(shù)據(jù)的,但是如果我們想在插槽內(nèi)容訪問子組件的狀態(tài)該怎么辦呢?

其實(shí)插槽可以像對(duì)組件傳遞 props 那樣,在slot標(biāo)簽綁定屬性從而傳遞給父組件中的插槽內(nèi)容。首先來看下默認(rèn)插槽的傳值方式

//子組件
<template>
    <div>
        <slot personName="xiaoyue" age="18"></slot>
    </div>
</template>

//父組件

<template>
  <div>
    <Child v-slot="slotProps">
      My name is {{ slotProps.personName }} and I am {{ slotProps.age }} years old this year
    </Child>
  </div>
</template>
<script setup>
import Child from './Child.vue'
</script>

你還可以以結(jié)構(gòu)的形式獲取slot提供的數(shù)據(jù)

<template>
  <div>
    <Child v-slot="{ personName, age }">
      My name is {{ personName }} and I am {{ age }} years old this year
    </Child>
  </div>
</template>

Vue3中的插槽怎么使用

注意不能綁定name屬性,因?yàn)槟憬壎?code>name它就成了具名插槽了。同樣具名插槽中的name屬性也不會(huì)傳遞給插槽內(nèi)容。因?yàn)閭鬟f的參數(shù)只能在插槽內(nèi)容中使用,所以這類能夠接受參數(shù)的插槽就被稱為了作用域插槽。

具名作用域插槽

下面再看下具名作用域插槽它的傳參方式。它接收參數(shù)的方式是通過template標(biāo)簽的指令v-slot的值獲取的,所以可以縮寫成這樣

//父組件
<template>
  <div>
    <Child>
      <template #bigTurnip="bigTurnipProps">
        {{ bigTurnipProps.message }}
      </template>
    </Child>
  </div>
</template>
<script setup>
import Child from './Child.vue'
</script>

//子組件Child.vue

<template>
    <div>
        <!-- 大蘿卜 -->
        <div>
            <slot name="bigTurnip" message="我是蘿北"></slot>
        </div>
    </div>
</template>

Vue3中的插槽怎么使用

到此,相信大家對(duì)“Vue3中的插槽怎么使用”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(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