| 1234567891011121314151617181920212223242526 |
- <template>
- <view>
- <web-view :src="videoUrl" id="webcon" cache-control="no-cache" class="video-monitor" :fullscreen="false">
- </web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- videoUrl:''
- }
- },
- onLoad() {
- const route = this.$route;
- const videoUrl = route.query.videoUrl;
- this.videoUrl = videoUrl;
- },
- }
- </script>
- <style scoped>
- .video-monitor {
- width: 100%;
- height: 100%;
- }
- </style>
|