Vue依赖组件介绍
vue-template-compiler 不需要编译组件,直接渲染组件
修改默认代码为runtime-only方式
// components: { App }, // template: '<App/>' render:function(createElement) { return createElement(App) }
// components: { App }, // template: '<App/>' render:function(createElement) { return createElement(App) }