vue-checkbox-radio icon indicating copy to clipboard operation
vue-checkbox-radio copied to clipboard

Checkbox and radio component for Vue.js

Results 4 vue-checkbox-radio issues
Sort by recently updated
recently updated
newest added

I have two sets of radio buttons, only 1 of the sets work. The other set just don't seem to be responding when ticking their boxes but the binding of...

I put the checkbox component inside another component and i try to do a v-model on the last one but when i do, the value is always going to be...

vue-checkbox-radio/src/components/Radio.vue ``` computed: { state() { if (this.modelValue === undefined) { return this.checked; } return this.modelValue === this.value; } }, ``` In my project, the modelValue sometimes is INT type,...

When we use a plain checkbox element, we do not need to explicitly provide a `value` attribute. When checkbox is checked, a "on" value is sent to the server on...

bug