bootstrap-vue
Version:
BootstrapVue, with over 40 plugins and more than 80 custom components, custom directives, and over 300 icons, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated WAI-AR
64 lines (62 loc) • 1.71 kB
JavaScript
import Vue from '../../utils/vue'
import idMixin from '../../mixins/id'
import formMixin from '../../mixins/form'
import formStateMixin from '../../mixins/form-state'
import formSizeMixin from '../../mixins/form-size'
import formRadioCheckMixin from '../../mixins/form-radio-check'
import looseEqual from '../../utils/loose-equal'
// @vue/component
export const BFormRadio = /*#__PURE__*/ Vue.extend({
name: 'BFormRadio',
mixins: [
idMixin,
formRadioCheckMixin, // Includes shared render function
formMixin,
formSizeMixin,
formStateMixin
],
inject: {
bvGroup: {
from: 'bvRadioGroup',
default: false
}
},
props: {
checked: {
// v-model
// type: [String, Number, Boolean, Object],
default: null
}
},
computed: {
// Radio Groups can only have a single value, so determining if checked is simple
isChecked() {
return looseEqual(this.value, this.computedLocalChecked)
},
// Flags for form-radio-check mixin
isRadio() {
return true
},
isCheck() {
return false
}
},
watch: {
// Radio Groups can only have a single value, so our watchers are simple
computedLocalChecked(newVal, oldVal) {
this.$emit('input', this.computedLocalChecked)
}
},
methods: {
handleChange({ target: { checked } }) {
const value = this.value
this.computedLocalChecked = value
// Change is only emitted on user interaction
this.$emit('change', checked ? value : null)
// If this is a child of form-radio-group, we emit a change event on it as well
if (this.isGroup) {
this.bvGroup.$emit('change', checked ? value : null)
}
}
}
})