Pattern: Use of deprecated is
attribute on HTML element
Issue: -
This rule reports deprecated the is
attribute on HTML elements (removed in Vue.js v3.0.0+).
<template>
<!-- ✓ GOOD -->
<div />
<component is="foo">
<!-- ✗ BAD -->
<div is="foo" />
<div :is="foo" />
</template>