Can't vue iview use both "render" and "editable" in a table?

problem description

can"t you use both "render" and "editable" in a table?

the environmental background of the problems and what methods you have tried

The

render function has changed the label

related codes

/ / Please paste the code text below (do not replace the code with pictures)
{

title: "",
key: "stName",
align: "center",
editable: true

},
{

title: "",
key: "monitor_name",
align: "center",
editable: true

},
{

title: "",
key: "safe1",
align: "center",
render: (h, params) => {
  return  params.row.safeThresholds[0].min+"  --  "+params.row.safeThresholds[0].max;
},
//editable: true

},

what result do you expect? What is the error message actually seen?

editable and render are used at the same time to achieve the editing effect
clipboard.png

Apr.05,2021

encounter the same problem, how to solve it in the end?

Menu