|
|
- <template>
- <view class="video-play flex-1 flex align-center justify-center">
- <video :show-fullscreen-btn="false" class="video-play-box" :src="video_src" loop autoplay></video>
- </view>
- </template>
-
- <script>
- export default {
- data () {
- return {
- video_src: ''
- }
- },
- onLoad(options) {
- this.video_src = options.picVo
- },
- }
- </script>
-
- <style lang="scss" scoped>
- .video-play {
- background-color: #000;
- &-box {
- width: 100%;
- height: 100vh;
- }
- }
- </style>
|