[Vuejs]-Vuejs checkbox disable if checked

0👍

Thanks for your question posting.
I think the disabled property of input tags should be :disabled.

<input type="checkbox" value="1" v-model="inputs" :disabled="inputs.length >= 4" />

Hope for your best result.

Thank you.

Leave a comment