unref返回数据类型异常
Vue version
3.3.4
Link to minimal reproduction
Steps to reproduce
const a: number= unref( 1 as unknown as ( number| Ref
What is expected?
unref(data) 返回number 类型
What is actually happening?
unref(data) 返回number | ComputedRef
System Info
No response
Any additional comments?
unref参数同时存在ComputedRef,Ref,原类型的时候,返回参数类型会异常。