12345678910111213141516171819202122232425 |
- <template>
- <view style="font-size: 0;width: 750rpx;height: 100vh;">
- <video :src="mp4" style="width: 750rpx;height: 100vh;" controls="true"></video>
- </view>
- </template>
- <script>
- export default {
- data(){
- return{
- mp4:''
- }
- },
- onLoad(option) {
- this.mp4 = decodeURIComponent(option.mp4)
- },
- methods:{
-
- }
- }
- </script>
- <style lang="scss">
-
- </style>
|