您好,登錄后才能下訂單哦!
本篇內容介紹了“vue3動態加載組件及動態引入組件怎么使用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
在做一個用vite
構建的vue3
項目時,動態拉取導入.vue
頁面,然后控制臺一直有以下提示,頁面也無法渲染出來。
根據上面的報錯提示,讓我們安裝并使用:@rollup/plugin-dynamic-import-vars
這個插件(最終沒有這個方案)。
Vite官方文檔說需要使用Glob 導入形式,然后看了一個Glob的文檔,解決了這個問題(親測可行)。
首先需要使用特殊的import.meta.glob
函數從文件系統導入多個模塊:
const modules = import.meta.glob('../views/*/*.vue');
他會匹配并導入所有相關的組件:
// vite 生成的代碼 const modules = { './views/foo.vue': () => import('./views/foo.vue'), './views/bar.vue': () => import('./views/bar.vue') }
那么回到項目中,在home
文件夾下的index.vue
文件中導入custom_components
文件夾下的所有.vue
文件
因此,根據vite的import.meta.glob
函數:就可以獲得對應的custom_components
文件夾下的.vue
文件
const changeComponents = (e:string)=>{ const link = modules[`../custom_components/${e}.vue`] console.log(link,'link') }
打印link
可以看到
最后就是異步注冊組件
layouts.value = markRaw(defineAsyncComponent(link))
下面貼出完整案例,僅供參考。有更好的或者需要優化的可以提問一起探討。
<template> <div @click="changeComponents('kk')">顯示kk.vue</div> <div @click="changeComponents('index')">顯示index.vue</div> <component :is="layouts"/> </template> <script lang='ts' setup> const modules = import.meta.glob('../custom_components/*.vue'); let layouts = ref<any>(null) const changeComponents = (e:string)=>{ const link = modules[`../custom_components/${e}.vue`] layouts.value = markRaw(defineAsyncComponent(link)) } </script>
“vue3動態加載組件及動態引入組件怎么使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。