[Vuejs]-Vue 2 – Module not found component dynamic

0👍

const componentsMap = {
InfoCreate: () => import('@/views/BuilderHtml/Htmls/InfoCreate.vue')
}

selectComponent() {
   return componentsMap [this.type]
}

load(){
this.type= 'InfoCreate';
}

<component :is="selectComponent" />

Leave a comment