How does the vue parent component modify the value of a child component in a list child component without affecting other child components?

  1. 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?
  2. the code to render the subcomponent is as follows
h(PopTipTransfer, {
    ref: "pop",
    props: {
    },
    on: {
    }
}, [
    h("Button", {
        props: {
            type: "text",
            size: "small"
        }
    }, "")
]),
Mar.28,2021
Menu