vue中在父元件點選按鈕觸發子元件的事件

谷歌研發技術團隊發表於2020-10-24

我把這個例項分為幾個步驟解讀:

1、父元件的button元素繫結click事件,該事件指向notify方法
2、給子元件註冊一個ref=“child”
3、父元件的notify的方法在處理時,使用了$refs.child把事件傳遞給子元件的parentMsg方法,同時攜帶著父元件中的引數msg
4、子元件接收到父元件的事件後,呼叫了parentMsg方法,把接收到的msg放到message陣列中

父元件

<template>
  <div id="app">
    <!--父元件-->
    <input v-model="msg" />
    <button v-on:click="notify">廣播事件</button>
    <!--子元件-->
    <popup ref="child"></popup>
  </div>
</template>
 <script>
import popup from "@/components/popup";
export default {
  name: "app",
  data: function () {
    return {
      msg: "",
    };
  },
  components: {
    popup,
  },
  methods: {
    notify: function () {
      if (this.msg.trim()) {
        this.$refs.child.parentMsg(this.msg);
      }
    },
  },
};
</script>
 <style>
#app {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

子元件

<template>
  <div>
    <ul>
      <li v-for="item in messages">父元件輸入了:{{ item }}</li>
    </ul>
  </div>
</template>
  <style>
body {
  background-color: #ffffff;
}
</style>
  <script>
export default {
  name: "popup",
  data: function () {
    return {
      messages: [],
    };
  },
  methods: {
    parentMsg: function (msg) {
      this.messages.push(msg);
    },
  },
};
</script>

相關文章