Add props to custom renderer (VueJS)

Tags: #<Tag:0x00007f8b25af7500>

Hi,

How to pass a parameter or props to custom renderer ?

Thanks,

Hi @Yacine

What you’d like to achieve?

Hi @aleksandra_budnik

I wanted to pass the modified value of the cell in my Custom renderer to display it on Tooltip.
It’s okay, I did it. I used the props of VueJs and it works

const CustomRendererTooltip = {
props:{
oldValue:{
type:String,
default:""
}
},
:
:
}
<CustomRendererTooltip old-value="test" hot-renderer></CustomRendererTooltip>

Thanks,

I’m glad to hear that you’ve already found the solution.
Thank you for updating me.