3a3ecabe
Imshann
init
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import template from "./Radio.html";
import style from "antd/lib/radio/style/index.css";
class Radio {
useModules = ["esNgAntd"];
props = {
value: String,
checked: Boolean,
disabled: Boolean,
};
state = {
checked: false,
};
template = template;
handleClick(event) {
event.preventDefault();
this.esRadioGroup.setValue(event);
}
constructor(esRadioGroup) {
this.esRadioGroup = esRadioGroup.getContext();
this.esRadioGroup.state.childrens.push($scope);
esNgAntd.createStyle("ant-radio", style);
}
}
|