Skip to content

Files

Latest commit

 

History

History
28 lines (18 loc) · 559 Bytes

require-component-is.md

File metadata and controls

28 lines (18 loc) · 559 Bytes

Pattern: Missing v-bind:is for <component> element

Issue: -

Description

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>

Further Reading