Vue Guideline: Components — Use PascalCase for components. Description: Consistent component naming. Do: PascalCase in imports and templates. Don't: kebab-case in script. Good Example: <MyComponent/>. Bad Example: <my-component/>. Severity: Low. Docs: https://vuejs.org/style-guide/rules-strongly-recommended.html.