在vue+typescript中怎么使用vue-video-player?
问题描述
在vue+typescript中怎么使用vue-video-player?
问题出现的环境背景及自己尝试过哪些方法
按照官网安装vue-video-player,结果在页面中引入的时候,报错
Could not find a declaration file for module 'vue-video-player'. '/Users/wangjie/Desktop/skyeye/node_modules/_vue-video-player@5.0.2@vue-video-player/dist/vue-video-player.js' implicitly has an 'any' type.
Try npm install @types/vue-video-player
if it exists or add a new declaration (.d.ts) file containing declare module 'vue-video-player';
然后执行npm install @types/vue-video-player,报错
npm ERR! code E404
npm ERR! 404 Not Found: @types/vue-video-player@latest
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/wangjie/.npm/_logs/2018-10-22T12_27_17_681Z-debug.log
对typeScript不是很熟悉,求指导!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这个库可能没有提供.d.ts 可能需要你自己写一下
请问你是怎么解决的