info.vue 375 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view style="font-size: 0;width: 750rpx;height: 100vh;">
  3. <video :src="mp4" style="width: 750rpx;height: 100vh;" controls="true"></video>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data(){
  9. return{
  10. mp4:''
  11. }
  12. },
  13. onLoad(option) {
  14. this.mp4 = decodeURIComponent(option.mp4)
  15. },
  16. methods:{
  17. }
  18. }
  19. </script>
  20. <style lang="scss">
  21. </style>