| 1234567891011121314151617181920 |
- <template>
- <a-card :bordered="false">
- <div>第三方课程链接</div>
- <video
- style="height: 900px; width: 100%; background-color: #000;margin-top: 15px;"
- ref="videoRef"
- controls
- Controlslist="nodownload noplaybackrate noremoteplayback disablePictureInPicture"
- >
- <source :src="videoUrl" type="video/mp4" />
- <source :src="videoUrl" type="video/ogg" />
- 您的浏览器不支持 HTML5 video 标签。
- </video>
- </a-card>
- </template>
- <script setup name="webEmpty">
- import videoUrl from '@/assets/class/demo.mp4'
- </script>
- <style scoped lang="less"></style>
|