value
Description
defines the initially checked checkboxesType
array
Example
<script>
let options = [
{ value: 1, label: "Option 1" },
{ value: 2, label: "Option 2" },
{ value: 3, label: "Option 3" },
{ value: 4, label: "Option 4" },
{ value: 5, label: "Option 5" }
];
</script>
<CheckboxGroup {options} value=[3,4] />
Related article: Setting the checked checkboxes
Related sample: Checkbox Group