Blame view

src/Radio/Radio.js 629 Bytes
3a3ecabe   Imshann   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  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();
81f8a467   Imshann   调整组件前缀
22
          this.antdRadioGroup.setValue(event);
3a3ecabe   Imshann   init
23
24
      }
  
81f8a467   Imshann   调整组件前缀
25
26
27
      constructor(antdRadioGroup) {
          this.antdRadioGroup = antdRadioGroup.getContext();
          this.antdRadioGroup.state.childrens.push($scope);
3a3ecabe   Imshann   init
28
29
30
          esNgAntd.createStyle("ant-radio", style);
      }
  }