Pattern: More than one component per file
Issue: -
This rule checks if there is only one component per file.
/* ✗ BAD */
Vue.component('TodoList', {
// ...
})
Vue.component('TodoItem', {
// ...
})
<script>
/* ✓ GOOD */
export default {
name: 'my-component'
}
</script>