Pattern: Missing v-bind:is
for <component>
element
Issue: -
This rule reports the <component>
elements which do not have v-bind:is
attributes.
<template>
<!-- ✓ GOOD -->
<component :is="type"/>
<component v-bind:is="type"/>
<!-- ✗ BAD -->
<component/>
<component is="type"/>
</template>