2019-05-29 10:09:39 +00:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
2020-11-26 08:20:37 +00:00
|
|
|
declare class RadioButton extends Vue {
|
2020-05-12 21:25:35 +00:00
|
|
|
value?: any;
|
|
|
|
modelValue?: any;
|
2020-09-21 12:27:08 +00:00
|
|
|
$emit(eventName: string, event: Event): this;
|
2020-11-26 08:20:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default RadioButton;
|