I am using vue composition API and using a ref for an array of objects which each object has a value property, it seems that the typescript confusing ref's value with the property value inside of each array:
As you see in the above picture, typescript telling us the type of arr is an array of object which contains name and value, but when i used ref, it detects the wrong type. even if i used as conversion like below the problem wont solve:
const arr2 = ref(arr as { name: string; value: number }[]);
But when i change the value property to value2 or something else, it will work:

update:
here is another problem which i have faced today:
I'm wondering how should i solve this type error?

