Skip to content

Files

Latest commit

 

History

History
22 lines (15 loc) · 376 Bytes

no-reserved-component-names.md

File metadata and controls

22 lines (15 loc) · 376 Bytes

Pattern: Reserved component name

Issue: -

Description

This rule prevents name collisions between vue components and standard html elements.

Examples

<script>
/* ✗ BAD */
export default {
  name: 'div'
}
</script>

Further Reading