我正在尝试在我的 Vue / Quasar / TypeScript 应用中使用新的 Google Identity Services JavaScript SDK 授权某些 Google API。
根据文档,我已在 index.template.HTML 文件的标头中加载了 Google 3P 授权 JavaScript 库,如下所示:
现在在 Vue 组件中我有这个:
但是我在“google”上收到 TypeScript 错误,内容为:Cannot find name 'google'。 ts(2304)
也许是因为我缺少 Google Identity Services JavaScript SDK 的类型?如果是这样,在哪里可以找到它们?
或者问题可能是别的什么?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
找到正确类型的包:
npm 我@types/google.accounts这将消除错误。