Bootstrap

【Typescript】Vue: Property finally does not exist on type Promise<void>.

【Typescript】Vue: Property finally does not exist on type Promise<void>.

问题描述

Vue: Property finally does not exist on type Promise<void>. Do you need to change your target library? Try changing the lib compiler option to es2018 or later.

在这里插入图片描述

原因分析

Promise.prototype.finally是在ES2018中引入的。如果使用finally方法,需要确保TypeScript配置文件(tsconfig.json)中的lib选项包含es2018或更高版本。

解决方案

  1. 在项目根目录创建 tsconfig.json
  2. 写入
{
  "compilerOptions": {
    "lib": ["es2018", "dom"]
  }
}
;