vue3 使用easyPlayer 遇到 Cannot read properties of undefined (reading ‘_c‘) 解决方案
完整报错信息
Cannot read properties of undefined (reading '_c')
TypeError: Cannot read properties of undefined (reading '_c')
at Proxy.render (webpack-internal:///./node_modules/@easydarwin/easyplayer/dist/component/EasyPlayer-component.min.js:9038:83)
解决方案
将下图中的红框部分复制粘贴到public部分
并且在index.html 中 ,全局导入
注意事项
根据官网 @easydarwin/easyplayer - npm, 的方法,是会在使用的组件中导入easyPlayer。在vue3中,由于我们已经全局导入了,所以不需要这一步,不然也会报上述错误信息。
参考链接(因为博主就是因为忘记删除组件内的导入,导致一直报错,所以写了这篇文)
EasyPlayer+vue3+vite报错Cannotread properties of undefined(reading ‘ c‘)的解决方案_vue3 easy-player-CSDN博客