[Vuejs]-How to assign default value of checkbox in vue

2👍

hello rocky you can try something like this

  <input v-model="smoking" true-value="1" false-value="0" type="checkbox">

if checkbox is checked then you get 1 else 0 in same array

👤bipin

Leave a comment