# san/valid-components-name
- ⚙️ This rule is included in
"plugin:san/essential"
.
# 📖 Rule Details
The component name must be kebab-case, it will not work when the component name is camelCase or PascalCase.
<template>
<!-- ✓ GOOD -->
<a-b a="{{true}}" on-click="fire('myEvent')" />
<!-- ✗ BAD -->
<aB a on-click="fire('my-event')" />
</template>
# 🔧 Options
nothing