pageClass | sidebarDepth | title | description |
---|---|---|---|
rule-details |
0 |
vue/no-reserved-component-names |
disallow the use of reserved names in component definitions |
disallow the use of reserved names in component definitions
This rule prevents name collisions between vue components and standard html elements.
<script>
/* ✗ BAD */
export default {
name: 'div'
}
</script>