直接上代码,写一个组件
<template>
<iframe :onload="inner"></iframe>
</template>
<script>
export default {
props: {
src: {}
},
data() {
return {
inner: ''
}
},
created() {
this.inner =
`this.contentWindow.document.body.innerHTML = '<video controls="controls" src="${this.src}"></video>';`
},
}
</script>
<style lang="scss">
</style>
在需要的地方直接引入放入路径就可以了
详情看