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

61 lines
1.2 KiB
Vue
Raw Normal View History

2023-05-24 12:29:06 +00:00
<script>
import BaseComponent from 'primevue/basecomponent';
import RadioButtonStyle from 'primevue/radiobutton/style';
2023-05-24 12:29:06 +00:00
export default {
name: 'BaseRadioButton',
extends: BaseComponent,
props: {
value: null,
modelValue: null,
2024-01-14 22:25:39 +00:00
binary: Boolean,
2023-05-24 12:29:06 +00:00
name: {
type: String,
default: null
},
invalid: {
type: Boolean,
default: false
},
2023-05-24 12:29:06 +00:00
disabled: {
type: Boolean,
default: false
},
readonly: {
type: Boolean,
default: false
},
tabindex: {
type: Number,
default: null
},
2023-05-24 12:29:06 +00:00
inputId: {
type: String,
default: null
},
inputClass: {
type: [String, Object],
default: null
},
inputStyle: {
type: Object,
default: null
},
ariaLabelledby: {
2023-05-24 12:29:06 +00:00
type: String,
default: null
},
ariaLabel: {
2023-05-24 12:29:06 +00:00
type: String,
default: null
}
},
style: RadioButtonStyle,
provide() {
return {
$parentInstance: this
};
2023-05-24 12:29:06 +00:00
}
};
</script>