我现在vue项目A中有一个这样的功能,根据后台返回的组件路径动态显示对应的组件,代码如下:
Layout.vue
<template>
<template v-for=(item,index) in layouts :key="index">
<component :is="item.view"></component>
</template>
</template>
export default{
name:'Layout',
data(){
return {
layouts:[]
}
},
methods:{
getData(){
//查询方法
queryDashboardItem(query).then(res => {
if (res.data.success) {
let rows = res.data.rows;
rows.forEach(item => {
// item.componentPath 的值类似于 components/base/demo/DemoTest.vue 以components目录开头的字符串
import(`@/${item.componentPath}`).then(cm=>{
item.view = cm.default;
this.layouts.push(item);
})
})
} else {
this.$message.error(res.data.message)
}
}).catch(e => {
console.log(e)
})
}
},
mounted(){
this.getData();
}
}
现在我将项目A构建成库(假设此库名就叫layout)并发布到npm上。然后我再项目B中安装此依赖并使用该依赖中的Layout功能。发现无法使用,无法使用的原因是安装的依赖在 node_modules 文件夹中。但此时动态导入的组件在B项目中,导致无法根据接口返回的路径正确的找到对应的组件。这种情况改如何处理?
一句话概括就是想在安装的依赖(这个依赖是自己开发的)中引入项目上的组件。
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…