Vue.js与document.createElement

时间:2017-06-21 10:26:40

标签: javascript vue.js

我正在将Vue.js集成到现有项目中,并且我遇到了以下问题。

以下是我的代码的一部分:

video = MicroEvent.mixin(document.createElement("video"));
video.autoplay = true;
video.ontimeupdate = function (evt) {
     ....
};

video 是一个DOM元素,我将其绑定到数据块。

enter image description here

然后我尝试通过 v-html 将其附加到模板中 enter image description here

但它不起作用。有没有办法做到这一点?

0 个答案:

没有答案