Firstly, I need to thank you for this guide and congratulate you for this incredible teamwork. About the "Tightly coupled component names" ``` components/ |- TodoList.vue |- TodoListItem.vue |- TodoListItemButton.vue ``` Would it also be good practice to structure this way? ``` components/ |- TodoList/index.vue |- TodoList/Item.vue |- TodoList/ItemButton.vue ``` Per-directory by reducing the number of components in the "components" directory. Thanks,