render: (h, params) => {
return h("img", {
props: {
src: params.row.image
}
})
}
<img>
src doesn"t work
render: (h, params) => {
return h("img", {
props: {
src: params.row.image
}
})
}
<img>
src doesn"t work
use attrs
replace props with domProps
domProps: {
src:''
}
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: &quo...
Click on a button rendered with render in the < H2 > table, and the button pops up a text prompt bubble (Poptip-- confirm), clicks OK and reports an error < H2 > The code is as follows render: (h, params) => { return h( div , [ ...
problem description general meaning: the table is the parent component, and the modal box is the child component. Click the operation button of the parent component table, and you need to transfer the data currently clicked to the modal box for displa...