我在角版本8中使用了video.js库并得到了错误
TypeError: video_js__WEBPACK_IMPORTED_MODULE_1__不是一个函数
@ViewChild('myplayer', {static: false}) videoElement:ElementRef ;
import * as videojs from 'video.js';
ngAfterViewInit(){
this.initPlayer();
}
initPlayer(){
const video = videojs(this.videoElement.nativeElement);
}发布于 2020-05-18 10:03:43
只要改变
import * as videojs from 'video.js';至
import videojs from 'video.js';https://stackoverflow.com/questions/59100744
复制相似问题