# vue/no-reserved-component-names

disallow the use of reserved names in component definitions

  • ⚙️ This rule is included in all of "plugin:vue/vue3-essential", "plugin:vue/essential", "plugin:vue/vue3-strongly-recommended", "plugin:vue/strongly-recommended", "plugin:vue/vue3-recommended" and "plugin:vue/recommended".

# 📖 Rule Details

This rule prevents name collisions between Vue components and standard HTML elements and built-in components.

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

# 🔧 Options

{
  "vue/no-reserved-component-names": ["error", {
    "disallowVueBuiltInComponents": false,
    "disallowVue3BuiltInComponents": false
  }]
}
  • disallowVueBuiltInComponents (boolean) ... If true, disallow Vue.js 2.x built-in component names. Default is false.
  • disallowVue3BuiltInComponents (boolean) ... If true, disallow Vue.js 3.x built-in component names. Default is false.

# "disallowVueBuiltInComponents": true

<script> /* ✗ BAD */ export default { name: 'transition-group' } </script>
Now loading...

# "disallowVue3BuiltInComponents": true

<script> /* ✗ BAD */ export default { name: 'teleport' } </script>
Now loading...

# 📚 Further Reading

# 🚀 Version

This rule was introduced in eslint-plugin-vue v6.1.0

# 🔍 Implementation

Last Updated: 5/11/2022, 11:50:07 PM