Setting a checkbox as checked with Vue.js

前端 未结 5 1943
清歌不尽
清歌不尽 2020-12-13 09:21

I have been googling and playing with every combination I know but I cannot get my checkboxes to be initialised as checked.

Example:

5条回答
  •  自闭症患者
    2020-12-13 10:09

    In the v-model the value of the property might not be a strict boolean value and the checkbox might not 'recognise' the value as checked/unchecked. There is a neat feature in VueJS to make the conversion to true or false:

    
    

提交回复
热议问题