91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Vue中slot插槽作用與原理是什么

發布時間:2022-09-22 09:53:43 來源:億速云 閱讀:141 作者:iii 欄目:開發技術

本篇內容介紹了“Vue中slot插槽作用與原理是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

1、作用

  • 父組件向子組件傳遞內容

  • 擴展、復用、定制組件

2、插槽內心

2.1、默認插槽

把父組件中的數組,顯示在子組件中,子組件通過一個slot插槽標簽顯示父組件中的數據。

子組件

<template>
  <div class="slotChild">
    <h5>{{msg}}</h5>
    <slot>這是子組件插槽默認的值</slot>
  </div>
</template>
<script>
export default {
  name: "slotChild",
  data() {
    return {
      msg: "vue中的插槽---子組件"
    }
  }
}
</script>

父組件

<template>
  <div class="slotStudy">
    <h2>{{ msg }}</h2>
    <SlotChild>
      <p>這是父組件傳入的值,將會替換子組件中slot中編寫的默認值</p>
    </SlotChild>
  </div>
</template>
<script>
import SlotChild from "@/components/slot/SlotChild";
export default {
  name: "slotStudy",
  components: {SlotChild},
  data() {
    return {
      msg: "vue中的插槽---父組件"
    }
  }
}
</script>

Vue中slot插槽作用與原理是什么

    <SlotChild></SlotChild>

Vue中slot插槽作用與原理是什么

2.2、具名插槽(命名插槽)

父組件中通過slot屬性,給插槽命名,在子組件中通過slot標簽,根據定義好的名字填充到對應的位置。這樣就可以指定多個可區分的slot,在使用組件時靈活的進行插值。

子組件:

<template>
  <div class="slotChild">
    <h5>{{msg}}</h5>
    <h2><slot name="h_1"></slot></h2>
    <h3><slot name="h_2"></slot></h3>
    <h4><slot name="h_3"></slot></h4>
  </div>
</template>
<script>
export default {
  name: "slotChild",
  data() {
    return {
      msg: "vue中的插槽---子組件"
    }
  }
}
</script>

父組件:

<template>
  <div class="slotStudy">
    <h2>{{ msg }}</h2>
    <SlotChild>
      <template v-slot:h_1>h2111111111的內容</template>
      <!--      #簡寫-->
      <template #h_2>h3222222的內容</template>
      <template v-slot:h_3>h43333的內容</template>
    </SlotChild>
  </div>
</template>
<script>
import SlotChild from "@/components/slot/SlotChild";
export default {
  name: "slotStudy",
  components: {SlotChild},
  data() {
    return {
      msg: "vue中的插槽---父組件"
    }
  }
}
</script>

Vue中slot插槽作用與原理是什么

2.3、作用域插槽

用得不多。

將子組件中data的數據傳出,在父組件中使用。子組件渲染作用域插槽時,可以將子組件內部的數據傳遞給父組件,讓父組件根據子組件的傳遞過來的數據決定如何渲染該插槽。在標簽中通過v-slot="要傳過來的數據"來接收數據。

實現原理

實現原理:當子組件vm實例化時,獲取到父組件傳入的slot標簽的內容,存放在vm. s l o t 中,默認插槽為 v m . slot中,默認插槽為vm. slot中,默認插槽為vm.slot.default,具名插槽為vm. s l o t . x x x , x x x 為插槽名,當組件執行渲染函數時候,遇到 s l o t 標簽,使用 slot.xxx,xxx 為插槽名,當組件執行渲染函數時候,遇到slot標簽,使用 slot.xxx,xxx為插槽名,當組件執行渲染函數時候,遇到slot標簽,使用slot中的內容進行替換,此時可以為插槽傳遞數據,若存在數據,則可稱該插槽為作用域插槽。

子組件:

<template>
  <div class="slotChild">
    <h5>{{ msg }}</h5>
    <h2>
      <slot :str="strDate" name="n_str">{{ strDate.name }}</slot>
    </h2>
    <h3>
      <slot :str="strDate" name="j_str">{{ strDate.job }}</slot>
    </h3>
  </div>
</template>
<script>
export default {
  name: "slotChild",
  data() {
    return {
      msg: "vue中的插槽---子組件",
      strDate: {
        name: "學習前端的小方同學",
        job: "找工作中",
        age:"我每年都是18"
      }
    }
  }
}
</script>

父組件:

<template>
  <div class="slotStudy">
    <h2>{{ msg }}</h2>
    <SlotChild>
      <template #n_str="strProps">
        {{ strProps.str.job }}
      </template>
      <template v-slot:j_str="strProps">
        {{ strProps.str.age }}
      </template>
    </SlotChild>
  </div>
</template>
<script>
import SlotChild from "@/components/slot/SlotChild";
export default {
  name: "slotStudy",
  components: {SlotChild},
  data() {
    return {
      msg: "vue中的插槽---父組件"
    }
  }
}
</script>

Vue中slot插槽作用與原理是什么

“Vue中slot插槽作用與原理是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

吉木萨尔县| 安达市| 天峻县| 福州市| 宁海县| 出国| 军事| 长阳| 嘉鱼县| 乐清市| 泽州县| 西盟| 安阳县| 沙河市| 庄河市| 康保县| 鄂尔多斯市| 广宗县| 昆明市| 合肥市| 安义县| 丰都县| 日喀则市| 探索| 静宁县| 南投市| 开原市| 正镶白旗| 南京市| 哈尔滨市| 扶沟县| 准格尔旗| 嘉义县| 宜都市| 沽源县| 武山县| 米易县| 诸暨市| 凤庆县| 新沂市| 资中县|