I have been googling and playing with every combination I know but I cannot get my checkboxes to be initialised as checked.
Example:
Let's say you want to pass a prop to a child component and that prop is a boolean that will determine if the checkbox is checked or not, then you have to pass the boolean value to the v-bind:checked="booleanValue"
or the shorter way :checked="booleanValue"
, for example:
That should work and the checkbox will display the checkbox with it's current boolean state (if true checked, if not unchecked).