在My VueJS组件中动态导入svg文件

时间:2019-05-17 11:10:52

标签: vue.js

我想做这样的事情:

导入'〜/ path / to / svg / $ {props_here} .svg';

在vue-js中有可能吗?

1 个答案:

答案 0 :(得分:0)

然后尝试以下操作:

<component v-bind:is="componentFile"></component>

props: {
        componentName: {
            type: String
        }
    }
    computed: {
        componentFile() {
            return () => import(`./path/${this.componentName}.vue`);
        }
    }