环境vue3 3.2.45+vite+uni-app
在微信开发者工具中 插件有暂停、播放、全屏按钮
在真机调试里 暂停、播放、全屏按钮都没有
<template>
<div>
<!-- :enablePlayGesture="true"
:enableAutoRotation="true"
:vslideGesture="true"
:direction="1" -->
<txv-video :vid="vid" id="videoRef" width="750rpx" height="450rpx">
<template>左下角的自定义按钮 </template>
<!-- <template v-slot:top-right-ctrl-btn>右上角的自定义按钮</template> -->
<!-- <template v-slot:bottom-right-ctrl-btn>右下角的自定义按钮</template> -->
</txv-video>
</div>
</template>
<script setup lang="ts">
import { onLoad } from '@dcloudio/uni-app';
import { ref } from 'vue';
const vid = ref('');
onLoad((query: any) => {
vid.value = query.vid;
const store: any = uni.createSelectorQuery().select('#videoRef');
console.log(store, 'cxzcxzcz');
});
</script>
<style scoped lang="scss"></style>
我这边插槽也不生效、taro Vue开发的
暂时不是很清楚具体原因,如果希望进一步排查请提供相应的代码片段