溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vue綜合組件間的通信詳解

發(fā)布時(shí)間:2020-10-22 10:04:33 來源:腳本之家 閱讀:152 作者:匿名的girl 欄目:web開發(fā)

本文實(shí)例為大家分享了vue綜合組件間的通信,供大家參考,具體內(nèi)容如下

實(shí)現(xiàn)一個(gè)ToDoList。

①完成所有的組件的創(chuàng)建和使用

②add

點(diǎn)擊add按鈕時(shí)候,將用戶輸入的內(nèi)容(todoinput),顯示在(todolist)

核心代碼:兄弟組件間通信
步驟1:var bus = new Vue()
步驟2:在準(zhǔn)備接受數(shù)據(jù)的組件

bus.$on('addEvent',function(){

})

步驟3:觸發(fā)事件

bus.$emit('addEvent',123)

將todolist中數(shù)組的元素 渲染在todoitem的每一個(gè)span標(biāo)簽。(父子組件通信)

③delete

在todoitem中點(diǎn)擊delete按鈕時(shí),將該todoitem刪除,由于todoitem的數(shù)量 取決于 todolist中數(shù)組

子組件 和 父組件通信:

vue綜合組件間的通信詳解

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
  <script src="js/vue.js"></script>
  <script src="js/vue-resource.js"></script>
</head>
<body>
<div id="container">
  <p>{{msg}}</p>
  <todobox></todobox>
</div>
<script>
  <!--兄弟間通信-->
  var bus = new Vue();
//  input組件
  Vue.component("todoinput",{
//    保存用戶輸入的數(shù)據(jù)
    data:function(){
      return{
        userInput:""
      }
    },
    methods:{
      sendInput:function(){
//        觸發(fā)自定義事件,將this.userInput這個(gè)傳遞到todolist
        bus.$emit("addEvent",this.userInput);
        this.userInput = "";
      }
    },
    template: `
      <div>
        <h2>待做事項(xiàng)</h2>
        <input type="text" placeholder="健身" v-model="userInput"/>
        <button @click="sendInput">Add</button>
      </div>

       `
  })
//  列表組件
  Vue.component("todolist",{
//    保存?zhèn)鬟f來的用戶輸入的數(shù)據(jù)
    data:function(){
      return{
        inputList:[]
      }
    },
    beforeMount:function(){
//      觸發(fā)綁定
//      msg就是事件觸發(fā)后傳遞過來的數(shù)據(jù)
      //var that = this;
      bus.$on("addEvent",(msg)=>{
//        保存到數(shù)組inputList中
        this.inputList.push (msg) ;
      })
    },
    template: `
    <div>
      <ul>
        <todoitem v-bind:content="tmp" v-for="(tmp,index) in inputList" v-bind:key="index" v-bind:myIndex="index"></todoitem>
      </ul>
    </div>
       `
//    出現(xiàn)警告,加下標(biāo),提高列表渲染
  })
//  item組件
  Vue.component("todoitem",{
//    props子組件獲取父組件的數(shù)據(jù),將todolist中的內(nèi)容以及內(nèi)容的下標(biāo)獲取
    props:["content","myIndex"],
    methods:{
//      通過下標(biāo)刪除
      deleteList:function(){
        this.$parent.inputList.splice(this.myIndex,1);
      }
    },
    template: `
    <div>
      <li>
        <button @click="deleteList">delete</button>
         <span>{{content}}</span>
      </li>
    </div>
       `
  })
//根組件
  Vue.component("todobox",{
    template:`
      <div>
        <todoinput></todoinput>
        <todolist></todolist>
      </div>
    `
  })
  new Vue({
    el: "#container",
    data: {
      msg: "Hello Vue"
    }
  })
</script>
</body>
</html>

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI