# 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>
Now loading...

# 🔧 Options

nothing

# 🔍 Implementation

Last Updated: 10/26/2021, 7:23:11 AM