vue/name-property-casing

enforce specific casing for the name property in Vue components

  • ⚙️ This rule is included in "plugin:vue/strongly-recommended" and "plugin:vue/recommended".
  • 🔧 The --fix option on the command line can automatically fix some of the problems reported by this rule.

📖 Rule Details

This rule aims at enforcing the style for the name property casing for consistency purposes.

<script> /* ✓ GOOD */ export default { name: 'MyComponent' } </script>
Now loading...
<script> /* ✗ BAD */ export default { name: 'my-component' } </script>
Now loading...

🔧 Options

{
  "vue/name-property-casing": ["error", "PascalCase" | "kebab-case"]
}
  • "PascalCase" (default) ... Enforce the name property to Pascal case.
  • "kebab-case" ... Enforce the name property to kebab case.

"kebab-case"

<script> /* ✓ GOOD */ export default { name: 'my-component' } </script>
Now loading...
<script> /* ✗ BAD */ export default { name: 'MyComponent' } </script>
Now loading...

📚 Further reading

🔍 Implementation

Last Updated: 12/3/2018, 12:55:00 PM