there is a t-ref="xyz" declared and in JS I reference it using this.rootRef=useRef("xyz")
Now how do I change the styles and attributes of this reference div from js.
to change the value , I did
this.rootRef.el.value="custom_value";
but this does not work for styling , I tried
this.rootRef.el.style.display="block";