[Vuejs]-Using <component> tag as first child in Vue <template> tag in Vue 2

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 />

Leave a comment