Problem Statement
When would you choose one-way binding vs two-way binding?
Explanation
Use one-way binding when the UI only displays data or emits events to the component (simpler and faster). Use two-way binding when you need immediate sync both ways, like form inputs. Keep two-way binding focused on forms to avoid accidental heavy change detection.