### 问题描述 Problem Description useRequest 函数执行后返回的 data 不是 shallowRef 吗,是文档写的不对吗 <!-- 详细地描述问题,让大家都能理解。 --> <!-- Describe the problem in detail so that everyone can understand. --> 版本:2.0.4 文档上写的是:https://www.attojs.com/api/#data data 类型: shallowRef<R | undefined> 默认值: undefined 接口返回的数据。 并且 node_modules 里面的 index.d.ts 中定义的 type State<R, P> = { loading: Ref<boolean>; data: Ref<R | undefined>; error: Ref<Error | undefined>; params: Ref<P>; }; data 却是 Ref 并且 vs code 中 data 提示的类型也是 Ref ### 其他信息 Other information <!-- 如截图等其他信息可以贴在这里。 --> <!-- Other information such as screenshots can be posted here. -->   