我想做这样的事情:
导入'〜/ path / to / svg / $ {props_here} .svg';
在vue-js中有可能吗?
答案 0 :(得分:0)
然后尝试以下操作:
<component v-bind:is="componentFile"></component>
props: {
componentName: {
type: String
}
}
computed: {
componentFile() {
return () => import(`./path/${this.componentName}.vue`);
}
}