Currently, I am attempting to toggle a checkbox based on the status of either the grandparent or parent checkboxes:
new Vue({
el: '.app',
data: {
grand_parent: false,
parent: false
}
})
Unfortunately, it is not working as expected. You can see the issue here:
http://jsbin.com/yabewemimo/edit?html,js,output
The desired outcome is:
- Checking/unchecking the grandparent should also affect the parent and child checkboxes
- Checking/unchecking the parent should only impact the child checkbox
I appreciate any assistance with this matter.