这是报错信息
chunk-libs.bccb3cdc.js:43 Uncaught TypeError: Super expression must either be null or a function, not undefined
at chunk-libs.bccb3cdc.js:43
at chunk-libs.bccb3cdc.js:43
at Object.<anonymous> (chunk-libs.bccb3cdc.js:43)
at n (chunk-libs.bccb3cdc.js:43)
at Object.<anonymous> (chunk-libs.bccb3cdc.js:43)
at n (chunk-libs.bccb3cdc.js:43)
at Object.<anonymous> (chunk-libs.bccb3cdc.js:43)
at n (chunk-libs.bccb3cdc.js:43)
at chunk-libs.bccb3cdc.js:43
at Object.U5Kh (chunk-libs.bccb3cdc.js:43)
这是代码
<template>
<div id="xgplayer"></div>
</template>
<script>
// comp
import 'xgplayer';
import HlsPlayer from 'xgplayer-hls';
export default {
name: 'LiveVideo',
props: {
url: {
type: String,
default: ''
},
height: {
type: String,
default: '325px'
},
},
data() {
return {
// 实例
player: {},
}
},
mounted() {
this.initPlayer()
},
methods: {
initPlayer() {
this.player = new HlsPlayer(this.getOptions())
},
getOptions() {
let ret = {
id: 'xgplayer',
url: '',
playsinline: true,
autoplay: true,
isLive: true,
ignores: ['time'],
screenShot: true,
height: '',
width: '100%',
}
// ret.url = this.url
ret.url = 'http://ivi.bupt.edu.cn/hls/cctv1.m3u8'
ret.height = this.height
return ret
}
},
}
</script>
<style lang="scss" rel="stylesheet/scss" type="text/scss" scoped></style>
1
tanranran 2021-01-03 19:50:56 +08:00
|
2
20498860 OP @tanranran 我看了看代码 只要不引用这个文件就没有问题,引用就有问题,但是这个文件本身我又找不到任何问题。。。
|
3
ditel 2021-01-03 20:27:41 +08:00 via Android
提示的是打包后的配置有个该定义为 null 或者 function,但是你没有定义。所以找这个未定义的地方修复
|