// js部分index.js class Myvue{ constructor(options){ this.data = options.data; this.dep = new Dep(); var id = options.el; this.observe(); var Dom = this.VnodeContainer(document.querySelector(id)); document.querySelector(id).appendChild(Dom); } VnodeCon…