Hello, I've been attempting to access the values from the _value property in Vue without success. How can I retrieve these values such as accessKey, align, ariaAtomic, etc.? Specifically, I am interested in getting the value of clientWidth.
https://i.sstatic.net/UuOwN.png
<div id="hello" ref="theRange" class="border-red-200 border-2 w-[80px]">
<h1>Test</h1>
</div>
const theRange = ref(null);
console.log(theRange.value.clientWidth); // This line causes an error