# Checkboxes
To use the custom checkbox controls you need to import the custom made component:
import {Checkbox} from 'src/components'
1
Global usage
Vue.component(Checkobx.name, Checkbox)
1
For local usage
export default {
components: {
[Checkbox.name]: Checkbox
}
}
1
2
3
4
5
2
3
4
5
# Custom checkboxes
# Checkbox Props
# Checkbox Events
Event Name | Description | Parameters |
---|---|---|
input | triggers when the binding value changes | the updated value |
# Slots
Name | Description |
---|---|
default | Default content for checkbox |