現(xiàn)在前端大談組件化、模塊化、工程化。今天就講講vue組件的認(rèn)識與開發(fā)。組件化也是vue最強(qiáng)大的功能之一。

一、組件開發(fā)語法:

1、創(chuàng)建組件構(gòu)造器

        //創(chuàng)建組件構(gòu)造器 var constructor = Vue.extend({
            template:'<div>hello vue,this is my first component1</div>' });

2、全局注冊組件

         //注冊組件 全局注冊 Vue.component("cyg-parent",constructor);

3、組件注冊語法糖

復(fù)制代碼
/**********祖冊組件語法糖*********/ //以上兩步可以簡寫成這樣 Vue.component("my-component",{
            template:"<p>
        
		

網(wǎng)友評論