javascript
render:({row})=>{
return h(ElSwitch, {
ref: 'mySwitch',
class: 'red',
modelValue: state.status,
type: "primary",
style: { "--el-switch-on-color": "#13ce66" },
onClick(a){
a.stopPropagation()
}
});
}
参考: