primevue-mirror/components/lib/radiobutton/BaseRadioButton.vue

65 lines
1.3 KiB
Vue

<script>
import BaseComponent from 'primevue/basecomponent';
import RadioButtonStyle from 'primevue/radiobutton/style';
export default {
name: 'BaseRadioButton',
extends: BaseComponent,
props: {
value: null,
modelValue: null,
binary: Boolean,
name: {
type: String,
default: null
},
variant: {
type: String,
default: null
},
invalid: {
type: Boolean,
default: false
},
disabled: {
type: Boolean,
default: false
},
readonly: {
type: Boolean,
default: false
},
tabindex: {
type: Number,
default: null
},
inputId: {
type: String,
default: null
},
inputClass: {
type: [String, Object],
default: null
},
inputStyle: {
type: Object,
default: null
},
ariaLabelledby: {
type: String,
default: null
},
ariaLabel: {
type: String,
default: null
}
},
style: RadioButtonStyle,
provide() {
return {
$parentInstance: this
};
}
};
</script>