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