现在前端大谈组件化、模块化、工程化。今天就讲讲vue组件的认识与开发。组件化也是vue最强大的功能之一。
一、组件开发语法:
1、创建组件构造器
//创建组件构造器 var constructor = Vue.extend({ template:'<div>hello vue,this is my first component1</div>' });
2、全局注册组件
//注册组件 全局注册 Vue.component("cyg-parent",constructor);
3、组件注册语法糖
/**********祖册组件语法糖*********/ //以上两步可以简写成这样 Vue.component("my-component",{ template:"<p>

