本文小編為大家詳細(xì)介紹“vue3中如何通過遍歷傳入組件名稱動(dòng)態(tài)創(chuàng)建多個(gè)component組件”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“vue3中如何通過遍歷傳入組件名稱動(dòng)態(tài)創(chuàng)建多個(gè)component組件”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識(shí)吧。
創(chuàng)新互聯(lián)建站是一家朝氣蓬勃的網(wǎng)站建設(shè)公司。公司專注于為企業(yè)提供信息化建設(shè)解決方案。從事網(wǎng)站開發(fā),網(wǎng)站制作,網(wǎng)站設(shè)計(jì),網(wǎng)站模板,微信公眾號(hào)開發(fā),軟件開發(fā),小程序設(shè)計(jì),10年建站對(duì)搬家公司等多個(gè)行業(yè),擁有多年的營銷推廣經(jīng)驗(yàn)。
在 vue3 中,如果使用 component,可以動(dòng)態(tài)加載一個(gè)組件,例如
<!-- 直接創(chuàng)建 --> <component :is="Image" />
這樣會(huì)將已經(jīng)定義好并導(dǎo)入的比如 Image 組件加載出來,但是如果將需要展示的自定義組件放在一個(gè)數(shù)組中,遍歷展示,則無法展示成功。
<!-- 動(dòng)態(tài)創(chuàng)建方式 1 --> <div v-for="(comp, index) in realTimeComponent" :key="index"> <component :is="comp" /> </div> <!-- 動(dòng)態(tài)創(chuàng)建方式 2--> <component v-for="(comp, index) in realTimeComponent" :key="index" :is="comp" />
<script setup> import { ref } from "Vue"; import Image from "@/customComponents/Image.vue"; const realTimeComponent = ref(["Image"]); </script> 或者 <script> import { ref } from "Vue"; import Image from "@/customComponents/Image.vue"; export default { components: { Image, }, setup(){ const realTimeComponent = ref(["Image"]); } } </script>
展示效果如圖:
經(jīng)過多次嘗試發(fā)現(xiàn),雖然要使用動(dòng)態(tài)創(chuàng)建組件的父組件里已經(jīng)動(dòng)態(tài)導(dǎo)入并注冊(cè)了子組件,但是始終無法顯示遍歷的Component 。
在遍歷的時(shí)候,當(dāng)前組件中導(dǎo)入并注冊(cè)該組件無法識(shí)別,會(huì)認(rèn)為沒有注冊(cè)該組件,從而展示<image></image>
但是,單獨(dú)直接使用<component :is="Image" />
該頁面中注冊(cè)該組件,是可以被識(shí)別的。
解決方案:
使用 app.component 全局注冊(cè)組件,循環(huán)遍歷創(chuàng)建多個(gè) component的時(shí)候可以生效。
全局創(chuàng)建方法:
// src/customComponents/index.js import Button from "@/customComponents/Button.vue"; import Text from "@/customComponents/Text.vue"; import Icon from "@/customComponents/Icon.vue"; import Image from "@/customComponents/Image.vue"; const components = { install: function (app) { app.component("Button", Button).component("Text", Text).component("Icon", Icon).component("Image", Image); }, }; export default components; // main.js import components from "@/customComponents"; app.use(components);
讀到這里,這篇“vue3中如何通過遍歷傳入組件名稱動(dòng)態(tài)創(chuàng)建多個(gè)component組件”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
文章標(biāo)題:vue3中如何通過遍歷傳入組件名稱動(dòng)態(tài)創(chuàng)建多個(gè)component組件
網(wǎng)頁URL:http://m.newbst.com/article4/jedgoe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、Google、微信公眾號(hào)、定制開發(fā)、、用戶體驗(yàn)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)