webEmpty.vue 585 B

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