https://jsfiddle.net/rohan0793/h7gn8qdv/
So I was trying to implement a simple todo list with computed properties like in the above fiddle. There are 3 lists. All Tasks. Completed Tasks. Incomplete Tasks. The problem is that if I click on the checkbox of an incomplete task in Incomplete List, or a complete task in Completed List, the task below it gets toggled too. I am not sure why this behaviour. Is it because the event is propagating somehow? I tried @click.stop on the checkboxes too but with no luck