91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue中父子組件注意事項,傳值及slot應用技巧

發布時間:2020-10-06 18:25:06 來源:腳本之家 閱讀:172 作者:Qin__ 欄目:web開發

一.父子組件傳值

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>父子組件傳值</title>
  <style> 
  </style>
  <script src="./vue.js"></script>
</head>
<body>
  <div id="root"> 
    <counter :count="0" @numberchange="handleChange"></counter>
    <counter :count="0" @numberchange="handleChange"></counter>
    <div>{{total}}</div> 
    <validate-content content="hello world"></validate-content>
  </div>
  <script> 
   //父組件向子組件傳值用 props ,加:號后傳遞的為js表達式,示例中則為數字,不加:號代表的是字符串 
   var counter = { //局部注冊 
     props:['count'],
     data:function(){//在子組件中定義數據,data不能是對象,必須是一個函數。
       return {
         number:this.count
       }
     },
     template:'<div @click="handleClick2">{{number}}</div>',
     methods:{
      handleClick2:function(){
        this.number ++;
        //this.count++; 父組件可以傳值給子組件,但子組件不可以修改父組件屬性,這里這么寫會報錯。
        this.$emit("numberchange",this.number);//子組件向父組件傳遞事件,值
      }
    } 
   }
   var validateContent = {
    props:{
      //content:[Number,String] //組件參數校驗,可以多選
      content:{//組件參數校驗
        type:String,
        required:true,
        default:"default value",
        validator:function(value){
          return value.length > 5
        }
      }
     },
     template:'<div >{{content}}</div>',
   }
   var vm = new Vue({
     el:'#root',
     data:{
       total:0
     },
     methods:{ 
      handleChange:function(number){ 
        console.log(number)
        // this.total +=1;
      }
     },
     components:{
       counter, //局部注冊要在根節點注冊組件
       validateContent
     }
   })
  </script>
</body>
</html>

二.父組件向子組件傳遞DOM

先看一個示例

<body>
  <div id="root"> 
    <child><p>Qin</p></child>
  </div>
  <script> 
   let child = {
     template :`<div>
           <p>hello world</p> 
        </div>`
   }
   var vm = new Vue({
     el:'#root',
     components:{
       child
     } 
   })
  </script>
</body>

打開查看器查看一下

vue中父子組件注意事項,傳值及slot應用技巧

發現Qin不見了

<p>Qin</p>1

查看官方文檔 ,   https://cn.vuejs.org/v2/guide/components-slots.html 

我們得出結論:如果 child 沒有包含一個 < slot > 元素,則任何傳入它的內容都會被拋棄

 我們加入插槽

<body>
  <div id="root"> 
    <child><p>Qin</p></child>
  </div>
  <script> 
   let child = {
     template :`<div>
           <p>hello world</p>
           <slot></slot>
        </div>` 
   }
   var vm = new Vue({
     el:'#root',
     components:{
       child
     } 
   })
  </script>
</body>

發現Qin能正常顯示,且slot將會被替換為解析后的片段 < p > Qin < /p >

vue中父子組件注意事項,傳值及slot應用技巧

當父組件不向子組件傳值的時候,slot還可以作為父組件默認值出現

<body>
  <div id="root"> 
    <child></child>
  </div>
  <script> 
   let child = {
     template :`<div>
           <p>hello world</p>
           <slot>default value</slot>
        </div>`
   }
   var vm = new Vue({
     el:'#root',
     components:{
       child
     } 
   })
  </script>
</body>

效果圖

vue中父子組件注意事項,傳值及slot應用技巧

具名插槽

 如果想使用多個插槽,我們先看看效果:

<body>
  <div id="root"> 
    <child>
      <header>This is header</header>
      <footer>This is footer</footer> 
    </child>
  </div>
  <script> 
   let child = {
     template :
       `<div> 
           <slot></slot>
           <p>Main content</p>
           <slot></slot>
        </div>`
   }
   var vm = new Vue({
     el:'#root',
     components:{
       child
     } 
   })
  </script>
</body>

vue中父子組件注意事項,傳值及slot應用技巧

發現出現了多個header和footer,要解決這個問題就要用到具名插槽  

我們修改代碼如下:

<body>
  <div id="root"> 
    <child>
      <header slot="header">This is header</header>
      <footer slot="footer">This is footer</footer> 
    </child>
  </div>
  <script> 
   let child = {
     template :
       `<div> 
           <slot name="header"></slot>
           <p>Main content</p>
           <slot name="footer"></slot>
        </div>`
   }
   var vm = new Vue({
     el:'#root',
     components:{
       child
     } 
   })
  </script>
</body>

vue中父子組件注意事項,傳值及slot應用技巧 

可以看到顯示正常了

總結

以上所述是小編給大家介紹的vue中父子組件注意事項,傳值及slot應用技巧,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

饶阳县| 三明市| 武义县| 呼伦贝尔市| 桂东县| 渝中区| 峨边| 德保县| 新巴尔虎左旗| 青田县| 玉林市| 大石桥市| 岫岩| 广德县| 岑溪市| 德令哈市| 赤壁市| 会宁县| 绥中县| 淮阳县| 永川市| 永福县| 石门县| 揭东县| 桓台县| 德兴市| 时尚| 承德市| 张掖市| 博白县| 肇州县| 稷山县| 广元市| 临城县| 大方县| 余江县| 陵水| 松溪县| 泾源县| 兴义市| 吴忠市|