【发布时间】:2019-10-22 07:33:25
【问题描述】:
我正在尝试在我的应用程序中使用 Vue 插件“Vue Timers”,并在设置了lang="ts 的组件上使用。另一个组件很好地使用了这个插件,但是那个组件没有使用 TypeScript。
编译时出现以下错误:
[tsl] ERROR in /src/renderer/components/ApplicationStatus.vue.ts(8,36)
TS7016: Could not find a declaration file for module 'vue-timers'. '/node_modules/vue-timers/index.min.js' implicitly has an 'any' type.
我尝试使用以下行创建shim.d.ts 文件:
declare module 'vue-timers';
但这并没有真正帮助。不知道如何继续。
【问题讨论】:
标签: typescript vue.js vuejs2