Vue Guideline: Components — Use single-file components. Description: Keep template script style together. Do: .vue files for components. Don't: Separate template/script files. Good Example: Component.vue with all parts. Bad Example: Component.js + Component.html. Severity: Low. Docs: .