- after the table component is rendered, each row loads a component. The parent component needs to modify the value of the child components of that row, and other child components are not affected. How to do that?
- the code to render the subcomponent is as follows
h(PopTipTransfer, {
ref: "pop",
props: {
},
on: {
}
}, [
h("Button", {
props: {
type: "text",
size: "small"
}
}, "")
]),