component和vue实例的区别
1 实例有el, component没有, component有name, vue没有
2 实例可以.$mount(id), component没有,但new component就可以
--
其他属性有很多相似的地方
生成vue实例: new Vue
生成component, Vue.component() / Vue.extend()
组件都是先声明生成后调用
原文:https://www.cnblogs.com/qinqiu/p/9266057.html