Wrong `$ref` returning value type without initial value
Vue version
3.2.40
Link to minimal reproduction
Steps to reproduce
Open the reproduction
What is expected?
const bar = $ref<string>()
bar
is ReactiveVariable<string> | undefined
What is actually happening?
const bar = $ref<string>()
bar
is ReactiveVariable<string>
System Info
N/A
Any additional comments?
No response