when the table component renders the column data using the render function in iview, the jsx rendering of the component label fails.
return h("Button", {
props: {
type: "warning",
size: "small",
icon: "checkmark-circled"
},
style: {
marginRight: "5px"
},
on: {
click: (e) => {
}
}
}, "")
this function can render the button normally
return (
<div>
<i-button type="primary" icon="checkmark-circled"></i-button>
</div>
)
the jxs way to render the result is empty
ordinary button or html tags can be rendered successfully on jsx. Take a look at the brother dei I met
. No, no, no.