bootstrap-vue
Version:
BootstrapVue, with over 40 plugins and more than 75 custom components, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated WAI-ARIA accessibility markup.
75 lines (74 loc) • 2.22 kB
JSON
{
"name": "@bootstrap-vue/form-checkbox",
"version": "1.0.0",
"meta": {
"title": "Form Checkbox",
"description": "Custom checkbox input and checkbox group to replace the browser default checkbox input, built on top of semantic and accessible markup. Optionally supports switch styling.",
"components": [
{
"component": "BFormCheckboxGroup",
"aliases": [
"BCheckboxGroup",
"BCheckGroup"
],
"slots": [
{
"name": "first",
"description": "Slot to place b-form-checks so that they appear before checks generated from options prop"
}
],
"events": [
{
"event": "input",
"description": "Emitted when the checked value is changed",
"args": [
{
"arg": "checked",
"description": "Value of checkboxes. Value will be an array."
}
]
},
{
"event": "change",
"description": "Emitted when selected value(s) is changed due to user interaction",
"args": [
{
"arg": "checked",
"description": "Value of checkboxes. Value will be an array."
}
]
}
]
},
{
"component": "BFormCheckbox",
"aliases": [
"BCheckbox",
"BCheck"
],
"events": [
{
"event": "input",
"description": "Emitted when the selected value(s) is changed",
"args": [
{
"arg": "checked",
"description": "Value of checkbox(es). When bound to multiple checkboxes, value will be an array."
}
]
},
{
"event": "change",
"description": "Emitted when selected value(s) is changed due to user interaction",
"args": [
{
"arg": "checked",
"description": "Value of checkbox(es). When bound to multiple checkboxes, value will be an array."
}
]
}
]
}
]
}
}