uniapp使用自定义组件

发布时间:2024年01月22日

?tt.vue中使用video-player组件

用到的目录如下:

pages.json

{
			"path": "pages/Tabbar/tt/tt",
			"style": {
				"navigationBarTitleText": "",
				"enablePullDownRefresh": false,
				// 使用自定义组件
				"usingComponents": {
					"video-player-dy": "/ttcomponents/videoPlayer/index"
				}
			}
		}

tt.vue

<video-player-dy v-if="isShow" :albumId="albumId" :episodeId="episodeId"
						style="width: 200px;height: 200px;"></video-player-dy>

index.json

{
  "component": true,
  "usingComponents": {
	  "video-player":"ext://industry/video-player"
  }
}

index.ttml

<video-player bind:error="onError" album-id="{{albumId}}" episode-id="{{episodeId}}" cloud-type="{{1}}" version="1" />

index.js

Component({
	

	methods: {
		
	},
});

文章来源:https://blog.csdn.net/m0_51534164/article/details/135753067
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。