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: "",
}
})
]);
}