multi check box-If I check one checkbox, all are checked.
-
Hi Team,
Anybody can help me with this issue,
issue:
*If I check one checkbox, all are checked. How do I simple select a single item?
I am constructing multiselect checkbox, But I am struct, Code is give in the below link
https://codepen.io/reks_yuv/pen/NWRrPGm -
Please, Kindly let me know about the inbuilt feature for this.
if there is no inbuilt function,
I will start writing customized logics. -
Forked your codepen and fixed:
https://codepen.io/dylanmoylan1/pen/poEbrvMNotes:
- Recommend using q-option-group in this situation.
- All checkboxes in a group like you were doing need to use the same v-model, an array.
- Avoid using v-model and @input on the same component.
-
@dmoylan thanks for your inputs