当前位置:   article > 正文

uniapp小视频项目:视频列表_uniapp 视频列表

uniapp 视频列表

1、创建视频列表

①在 components 下新建 video-list.vue 文件来编写视频列表

<template>
	<view class="videoList">
		<view class="video-box">
			<swiper class="swiper" :vertical="true">
				<swiper-item>
					<view class="swiper-item">
						<videoPlayer></videoPlayer>
					</view>
				</swiper-item>
				<swiper-item>
					<view class="swiper-item">
						<videoPlayer></videoPlayer>
					</view>
				</swiper-item>
				<swiper-item>
					<view class="swiper-item">
						<videoPlayer></videoPlayer>
					</view>
				</swiper-item>
			</swiper>
		</view>
	</view>
</template>

<script>
	import videoPlayer from './videoPlayer.vue'
	export default {
   
		components: {
   
			videoPlayer
		},
		name: "video-list",
		data() {
   
			return {
   

			};
		}
	}
</script>

<style>
	.videoList {
   
		width: 100%;
		height: 100%;
	}

	.video-box {
   
		width: 100%;
		height: 100%;
	}

	.swiper {
   
		width: 100
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/1015709
推荐阅读
相关标签
  

闽ICP备14008679号