RadioButton.js
370 Bytes
import template from "./RadioButton.html";
class RadioButton {
props = {
value: String,
};
state = {
checked: false,
};
constructor(antdRadioGroup) {
this.antdRadioGroup = antdRadioGroup.getContext()
$element.removeAttr("value");
}
handleClick(event) {
this.antdRadioGroup.setValue(event);
}
}