0👍
const componentsMap = {
InfoCreate: () => import('@/views/BuilderHtml/Htmls/InfoCreate.vue')
}
selectComponent() {
return componentsMap [this.type]
}
load(){
this.type= 'InfoCreate';
}
<component :is="selectComponent" />
- [Vuejs]-Persisting pinia stores using nuxt 3
- [Vuejs]-When debugging Vue app in Safari, Firebase Auth change handlers are not triggered
Source:stackexchange.com