0👍
use computed property or just a conditional in the template
<component :is="tagType">
...
computed:{
tagType(){
return condition ? LIComponent : MyBestComponent
}
}
<li v-if='condition'>testing</li>
<MyBestComponent v-else />
- [Vuejs]-How to update the details dynamically in vuejs?
- [Vuejs]-Vue3 <component> tag does not emit events or work with v-model
Source:stackexchange.com