Iview uses render to render RadioGroup in table and its rendered components cannot be selected?

the Radio component rendered by rander rendering RadioGroup in the table component of iview cannot be selected

render: (h, params) => {
    return h("RadioGroup",
      {
        props: {
          value: this.resData.method1,
          type: "button"
        }
      }, [h("Radio", {
        props: {
          label: "",
        }
      }),
        h("Radio", {
          props: {
            label: "",
          }
        }),
        h("Radio", {
          props: {
            label: "",
          }
        })
      ]);
      }

Feb.26,2021

data is not bidirectionally bound, so the component cannot be selected

Menu