html5 video动态展示视频不显示问题

在这里插入图片描述
这个形式视频没有显示,所以使用了computed属性

<span v-if="type===3" v-html="videoSource" />
computed: {
    // 计算属性的 getter
    videoSource: function() {
      // `this` 指向 vm 实例
      return `<video controls autoplay width="360" height="640"><source src="${this.videoUrl}" type="video/mp4"></video>`
    }
  },

版权声明:本文为qq_41820599原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。