```javascript ``` ### 属性说明 > video-height: 视频容器的高度 > > videoIndex:当前播放的视频下标 > > data:视频列表数据 > > @refresh:下拉刷新方法 > > @loadMore:上拉加载方法 > > @share:分享按钮方法 > > @fabulous:视频点赞切换方法 > > @follow:关注切换方法 > > @commentFabulous:评论点赞切换方法 ### data数据格式示例 ```json [{ id: '1', //是否关注 isFollow:0, //是否点赞 isFabulous:1, //用户昵称 userNick:'', //用户头像 userHead:'', //视频描述信息 videoContent:'', //点赞数量 fabulousCount: 1, //评论数量 commentCount:1000, //分享数量 shareCount:499, //视频资源地址 videoUrl: '', //视频封面图片地址 posterUrl: '', //视频评论对象 commentObj:{ //评论总数 count:520, //评论列表 list:[{ //用户头像 userHead:'', //用户昵称 userNick:'小二', //评论内容 content:'', //评论时间 time:'2021-05-06 15:34:44', //点赞数量 fabulousCount:3737, //是否点赞 isFabulous:1, //评论列表 children:[{ //被回复人 replyTo:'小二', //用户头像 userHead:'', //用户昵称 userNick:'小三', //回复内容 content:'', //回复时间 time:'2021-05-06 15:34:44', //点赞数量 fabulousCount:3737, //是否点赞 isFabulous:0, }] }] } }] ``` ### 示例文件 ```vue ``` ```javascript ``` ```css ```