[vue3] h函数,阻止事件冒泡
render:({row})=>{return h(ElSwitch, {ref: 'mySwitch',class: 'red',modelValue: state.status,type: "primary",style: { "--el-switch-on-color": "#13ce66" },onClick(a){a.stopPropagation()}});
}
参考:
vue中渲染函数 阻止事件冒泡
render:({row})=>{return h(ElSwitch, {ref: 'mySwitch',class: 'red',modelValue: state.status,type: "primary",style: { "--el-switch-on-color": "#13ce66" },onClick(a){a.stopPropagation()}});
}
参考:
vue中渲染函数 阻止事件冒泡