标签:挂载 ntb spl class isp span vue vue2 none
//vue2.x写法 new Vue({ router, render: h => h(App) }).$mount("#app"); //或者 new Vue({ el: ‘#app‘, router, render: h => h(App) }); //也可以先得到Virtual DOM,再挂载 var component = new MyComponent().$mount() document.getElementById(‘app‘).appendChild(component.$el) //vue1.x写法 new Vue({ el: ‘#app‘, components: { App } });
标签:挂载 ntb spl class isp span vue vue2 none
原文地址:https://www.cnblogs.com/mengff/p/12426286.html