vue video 重置清空

265 阅读1分钟

从vue处理视频重置一切,保持沉默。

    /**
     * 重置视频
     */
    resetVideo(){
      this.$refs.video.pause();
      this.$refs.video.removeAttribute('src'); // empty source
      this.$refs.video.load();
    },