vue組件

組件

組件(component):是vue最強(qiáng)大的功能之一 組件化開發(fā)
????????????????????????????????????組件可以拓展?HTML?元素,封裝可重用代碼
\color{orange}{注意:}
??????????????\color{orange}{在組件模板中不能有兩個以上的兄弟元素}
??????????????\color{orange}{在全局組件中哈肖,必須把組件放在new Vue上面内颗,否則會報錯}

組件分為兩種:全局組件逗物、局部組件

全局組件代碼:

例子:

<div id="app">
    <aa></aa>
</div>
<script>
    Vue.component('aa',{
        template:`
    <ul>
        <li>1</li>
        <li>1</li>
        <li>1</li>
        <li>1</li>
    </ul>
    `
    })
    new Vue({
        el:'#app'
    })
</script>
局部組件代碼:

例子:

<div id="app">
    <aa></aa>
</div>
<script>
    new Vue({
        el:'#app',
        components:{
            'aa':{
        template:`
            <ul>
                <li>1</li>
                <li>1</li>
                <li>1</li>
                <li>1</li>
            </ul>
        `
            }
        }
    })
</script>

例子:

\color{#f84f84}{點(diǎn)擊按鈕彈出窗口}

<div id="app">
    <aa></aa>
</div>
<script>
    Vue.component("aa",{
        template:`
            <div>
                <h1>{{msg}}</h1>
                <button @click='alt'>按鈕</button>
            </div>
        `,
        data:function(){
            return{
                msg:'dcgf'
           }
       },
       methods:{
           alt:function(){
               alert(11111) 
           }
       }
   })
    new Vue({
        el:'#app'
    })

組件之間的傳值\color{#f84f84}{(重點(diǎn))}

????????????父傳子:用屬性名?????props:['屬性']
????????????子傳父:用事件名??????$emit
????????????同級之間傳值:第三方量

全局組件\color{#98a456}{父傳子}代碼:

例子1:

<div id="app">
    <my-component></my-component>
</div>
<script>
    Vue.component("my-component",{
        template:`
            <div>
                <h2>我是my-component組件的標(biāo)題</h2>
                <my-child v-bind:zxc='zxx'></my-child>
            </div>
        `,
        data:function(){
            return{
                zxx:'fsadgdrvgrf'
            }
        }
    })
    Vue.component("my-child",{
        props:['zxc'],
        template:`
            <div>
                <h3>我是my-child組件中的標(biāo)題</h3>
                <p>{{zxc}}</p>
            </div>
        `
    })
    new Vue({
        el:'#app'
    })
</script>

例子1:\color{#65df42}{水果列表}

<div id="app">
    <my-father></my-father>
</div>
<script>
    Vue.component("my-father",{
        template:`
        <div>
            <my-son v-bind:tit='title'></my-son>
            <my-list v-bind:fruit='arr'></my-list>
        </div>
    `,
        data:function(){
            return{
                arr:['蘋果','梨子','橘子'],
                title:'水果列表'
            }
        }
    })
    Vue.component("my-son",{
        props:['tit'],
        template:`
            <h2>{{tit}}</h2>
    `
    })
    Vue.component("my-list",{
        props:['fruit'],
        template:`
            <ul>
                <li v-for='value in fruit'>{{value}}</li>
            </ul>
    `
    })
    new Vue({
        el:'#app'
    })
</script>

例子2:\color{#65df42}{水果列表點(diǎn)擊按鈕添加刪除}

<div id="app">
    <my-father></my-father>
</div>
<script>
    Vue.component('my-father',{
        template:`
            <div>
                <input type='text' v-model='fruit'> <button @click='add'>添加</button>
                <my-child v-bind:fruList='list'></my-child> 
            </div>
        `,
        data:function(){
            return{
            list:['蘋果','梨子','香蕉'],
            fruit:''
            }
        },
        methods:{
            add:function(){
            this.list.push(this.fruit)
            }
        }
    })
    Vue.component('my-child',{
        props:['fruList'],
        template:`
        <ul>
            <li v-for="(value,index) in fruList">
                {{value}}
                <button @click='delt(index)'>刪除</button>
            </li>
        </ul>
        `,
        methods:{
            delt:function(ind){
            this.fruList.splice(ind,1)
            }
        }
    })
    new Vue({
     el:'#app'
    }) 
</script>

例子3:\color{#65df42}{購物車}

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel="stylesheet" href="css/bootstrap.css">
</head>
<body>
    <div id='app'>
      <my-father></my-father>
    </div>
<script src="js/vue.js"></script>
<script>
   Vue.component('my-father',{
       template:`
         <div class='container'>
          <table class='table table-bordered text-center'>
             <thead>
                 <tr>
                   <th class='text-center'>編號</th>
                   <th class='text-center'>名稱</th>
                   <th class='text-center'>單價</th>
                   <th class='text-center'>數(shù)量</th>
                   <th class='text-center'>小計</th>
                 </tr>
             </thead>
             <my-child v-bind:list='fruList'></my-child>
          </table>
        </div>
       `,
       data:function(){
           return{
               fruList:[
                   {pname:'apple',price:3,count:3,sub:9},
                   {pname:'pear',price:4,count:4,sub:16},
                   {pname:'orange',price:5,count:5,sub:25}
               ]
           }
       }
   }) 
   
  Vue.component('my-child',{
      props:['list'],
      template:`
         <tbody>
             <tr v-for="(value,index) in list">
                <td>{{index+1}}</td>
                <td>{{value.pname}}</td>
                <td>{{value.price}}</td>
                <td>
                    <button @click='add(index)'>+</button>
                    <span>{{value.count}}</span>
                    <button @click='redu(index)'>-</button>
                 </td>
                <td>{{value.sub}}</td>
             </tr>
             <tr>
                <td colspan=5>總價:{{sum}}</td>
             </tr>
         </tbody>
        
      `,
      data:function(){
          return{
              sum:50
          }
      },
      methods:{
          add:function(ind){
             this.list[ind].count++ ;
              //計算小計
              this.list[ind].sub=this.list[ind].count*this.list[ind].price;
              this.countSum();
          },
          redu:function(ind){
              if(this.list[ind].count>1){
                 this.list[ind].count--
              }  
               //計算小計               
              this.list[ind].sub=this.list[ind].count*this.list[ind].price;
              this.countSum();
          },
          countSum:function(){
              for(var i=0,total=0;i<this.list.length;i++){
                  total+=this.list[i].sub;
              } 
              this.sum=total;
          }
      }
  })  
   new Vue({
       el:'#app'
   })
</script>
</body>
</html>

全局組件\color{#98a456}{子傳父}代碼:

例子1:

<div id='app'>
   <my-father></my-father>
</div>
<script src='js/vue.js'></script>
<script>
    Vue.component('my-father',{
        template:`
            <div>
               <h1>{{mess}}</h1>
               <my-child @send='revMsg'></my-child>
            </div>
         `,
        data:function(){
            return{
                mess:''
            }
        },
        methods:{
           revMsg:function(txt){
               this.mess=txt
           }
         }
    })
    
    Vue.component('my-child',{
        template:`
             <button @click='sendFather'>給父組件</button>
         `,
        data:function(){
            return{
                msg:'張世遠(yuǎn)是共產(chǎn)主義接班人'
            }
        },
        methods:{
            sendFather:function(){
//                   this.$emit('自定義事件',參數(shù)) 
                this.$emit('send',this.msg)
            }
        }
    }) 
    new Vue({
        el:"#app"
    })
</script>

例子2:

<div id='app'>
   <father></father>
</div>
<script src='js/vue.js'></script>
<script>
    Vue.component('father',{
        template:`
          <div>
            <h1>{{mess}}</h1>  
            <son @send='rcvMsg'></son>
          </div>
         `,
        data:function(){
            return{
               mess:'' 
            }
            
        },
        methods:{
            rcvMsg:function(txt){
                this.mess=txt;
            }
        }
    })
    
     Vue.component('son',{
        template:`
            <button @click='sendToFather'>我是子組件季俩,我要向父組件傳值</button>
          `,
         data:function(){
             return{
                 msg:'子組件向父組件傳值'
             }
         },
         methods:{
             sendToFather:function(){
                 this.$emit('send',this.msg )
             }
         }
    })
   new Vue({
       el:"#app",
       
   })
</script>

例子:\color{#65df42}{談話}

<div id="app">
    <chat></chat>         
</div>
<script>
    Vue.component('chat',{
        template:`
            <div>
                <ul>
                    <li v-for='value in arr'>{{value}}</li>
                </ul>
                <user @send='rcvMsg' userName='jack'></user>
                <user @send='rcvMsg' userName='rose'></user>
            </div>
        `,
        data:function(){
            return{
                arr:[]
            }
        },
        methods:{
            rcvMsg:function(txt){
                this.arr.push(txt)
            }
        }
    })
    Vue.component('user',{
        props:['userName'],
        template:`
            <div>
                <ul>
                    <label>{{userName}}</label>
                    <input type="text" v-model='inputVal'>
                    <button @click='sendMsg'>發(fā)送</button>
                </ul>
            </div>
    `,
        data:function(){
            return{
                inputVal:''
            }
        },
        methods:{
            sendMsg:function(){
                this.$emit('send',this.userName+':'+this.inputVal)
            }
        }
    })
    new Vue({
        el:'#app'
    })
</script>

全局組件\color{#98a456}{非父子組件傳值}代碼:

例子:

<div id="app">
    <child></child>
    <son></son>
</div>
<script>
    var bus=new Vue();
    Vue.component('child',{
        template:`
            <div>
                <h1>我是child組件</h1>
                <button @click='sendMsg'>發(fā)送數(shù)據(jù)給son</button>
            </div>
    `,
        data:function(){
            return{
            msg:'hello vue'
            }
        },
        methods:{
            sendMsg:function(){
                bus.$emit('send',this.msg)
            }
        }
    })
    Vue.component('son',{
        template:`
            <div>
                <h1>我是son組件</h1>
                <a href=''>{{mess}}</a>
            </div>
    `,
        data:function(){
            return{
                mess:''
            }
        },
        mounted:function(){
            bus.$on('send',msg=>{
                console.log(this);
                this.mess=msg
            })
        }
    })
    new Vue({
        el:'#app'
    })
</script>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市宴猾,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌叼旋,老刑警劉巖仇哆,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異夫植,居然都是意外死亡讹剔,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進(jìn)店門详民,熙熙樓的掌柜王于貴愁眉苦臉地迎上來延欠,“玉大人,你說我怎么就攤上這事沈跨∩蓝常” “怎么了?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵谒出,是天一觀的道長隅俘。 經(jīng)常有香客問我邻奠,道長,這世上最難降的妖魔是什么为居? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任碌宴,我火速辦了婚禮,結(jié)果婚禮上蒙畴,老公的妹妹穿的比我還像新娘贰镣。我一直安慰自己,他們只是感情好膳凝,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布碑隆。 她就那樣靜靜地躺著,像睡著了一般蹬音。 火紅的嫁衣襯著肌膚如雪上煤。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天著淆,我揣著相機(jī)與錄音劫狠,去河邊找鬼。 笑死永部,一個胖子當(dāng)著我的面吹牛独泞,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播苔埋,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼懦砂,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了组橄?” 一聲冷哼從身側(cè)響起孕惜,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎晨炕,沒想到半個月后衫画,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡瓮栗,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年削罩,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片费奸。...
    茶點(diǎn)故事閱讀 38,809評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡弥激,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出愿阐,到底是詐尸還是另有隱情微服,我是刑警寧澤,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布缨历,位于F島的核電站以蕴,受9級特大地震影響糙麦,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜丛肮,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一赡磅、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧宝与,春花似錦焚廊、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至诽里,卻和暖如春袒餐,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背须肆。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工匿乃, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留桩皿,地道東北人豌汇。 一個月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像泄隔,于是被迫代替她去往敵國和親拒贱。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,724評論 2 351

推薦閱讀更多精彩內(nèi)容