不能将类型“Ref.......“分配给类型“(...args: any) => void”。

不能将类型“Ref.......“分配给类型“(...args: any) => void”。_第1张图片这是因为TS在检测判断一个变量是不是某个类型的实例

我的setup中是

  const [pageContentRef, handleResetClick, handleQueryClick] =
      usePageSearch() 

只需要对变量进行类型断言即可不能将类型“Ref.......“分配给类型“(...args: any) => void”。_第2张图片

 

你可能感兴趣的:(vue.js,typescript,前端)