您好,登錄后才能下訂單哦!
本篇內容介紹了“Vue中slot插槽作用與原理是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
父組件向子組件傳遞內容
擴展、復用、定制組件
把父組件中的數組,顯示在子組件中,子組件通過一個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>
<SlotChild></SlotChild>
父組件中通過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>
用得不多。
將子組件中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插槽作用與原理是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。