index.vue 530 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view class="bg">
  3. <video class="video" :src="query.src" show-snapshot-button object-fit="contain" >
  4. </video>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. query:{
  12. src:''
  13. }
  14. }
  15. },
  16. onLoad(query){
  17. this.query =query
  18. }
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. .bg{
  23. width: 100%;
  24. }
  25. .video{
  26. width: 100%;
  27. }
  28. </style>