<view class="hot-trailer page-block" v-for="(trailer,index) in hotTrailerList" :key="index">
<video
class="hot-trailer-single"
:poster="trailer.poster"
:src="trailer.trailer"
controls="false"
show-center-play-btn="false">
</video>
<image :src="trailer.poster"></image>
</view>
是删除image这个组件,不是通过删除数组数据而达到不渲染图片。这种方法是可以不渲染图片,但是阻止不了他渲染image这个组件,image依然存在,影响我的video标签。我要删除image这个节点标签。