摘要:
在main.js中:常会有 new Vue({ el: '#app', router,//实例化,表示会使用 render: h => h(App)//vue2.0写法 //以下是vue1.0的写法 //components: { App },//注册组件信息 // template: '<App/ 阅读全文
摘要:
new Vue({el: '#app',components:{App},template: '<App/>'})components 是给el挂载的组件并进行渲染,等同于render: h => h(App)template 是使用哪个模板el: '#app' 是index.html 的<div 阅读全文