Checkboxes are typically expected to have values true, false: The vuetify-form-base documentation shows that checkbox values are true, false. See https://wotamann ...
const checkBoxes = document.querySelectorAll(".pill input[type='checkbox']"); checkBoxes.forEach((checkbox, index) => { checkbox.addEventListener("change", () => { if ...