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

溫馨提示×

溫馨提示×

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

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

vuejs中父子組件之間通信方法實例詳解

發布時間:2020-10-04 10:47:25 來源:腳本之家 閱讀:190 作者:林飛的夢囈 欄目:web開發

本文實例講述了vuejs中父子組件之間通信方法。分享給大家供大家參考,具體如下:

一、父組件向子組件傳遞消息

// Parent.vue

<template>
 <div class="parent">
  <v-child :msg="message"></v-child>
 </div>
</template>
<script>
 import VChild from './child.vue'
 export default {
  components: {
   VChild
  },
  data () {
   return {
    // 父組件將message作為參數傳入子組件中
    message: '來自父組件消息'
   }
  }
 }
</script>

// Child.vue
<template>
 <div class="child">
  <h2>child</h2>
  <p>{{ msg }}</p>
 </div>
</template>
<script>
 export default {
  // 通過props定義外部系統可以傳入的參數
  // 定義了一個msg變量,類型是String,默認是空字符串
  props: {
   msg: {
    type: String,
    default: ""
   }
  }
 }
</script>

// router/index.js

import Vue from 'vue'
import Router from 'vue-router'
import HelloWorld from '@/components/HelloWorld'
import Parent from '@/test/Parent'
Vue.use(Router)
export default new Router({
 routes: [
  {
   path: '/',
   name: 'HelloWorld',
   component: HelloWorld
  },
  {
   path: '/parent',
   component: Parent
  }
 ]
})

二、子組件向父組件傳遞消息

// Parent.vue

<template>
 <div class="parent">
  <v-child :msg="message" @childNotify="childNotify"></v-child>
 </div>
</template>
<script>
 import VChild from './child.vue'
 export default {
  components: {
   VChild
  },
  data () {
   return {
    // 父組件將message作為參數傳入子組件中
    message: '來自父組件消息'
   }
  },
  methods: {
   childNotify (params) {
    console.log(params)
   }
  }
 }
</script>

// Child.vue

<template>
 <div class="child" @click="notifyParent">
  <h2>child</h2>
  <p>{{ msg }}</p>
 </div>
</template>
<script>
 export default {
  // 通過props定義外部系統可以傳入的參數
  // 定義了一個msg變量,類型是String,默認是空字符串
  props: {
   msg: {
    type: String,
    default: ""
   }
  },
  methods: {
   notifyParent () {
    var params = {
     m: 1,
     n: 2
    }
    // 子組件以事件的形式通知父組件(需要使用$emit方法,第一個參數,事件名稱;第二個事件附帶的參數)
    this.$emit('childNotify', params)
   }
  }
 }
</script>

參考:https://jingyan.baidu.com/article/455a99505b639da1662778e1.html

希望本文所述對大家vue.js程序設計有所幫助。

向AI問一下細節

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

AI

廉江市| 连平县| 昌乐县| 虎林市| 柘荣县| 大田县| 霍城县| 甘洛县| 乳山市| 佛坪县| 樟树市| 吴忠市| 河曲县| 阳春市| 雅安市| 西乡县| 左云县| 姜堰市| 尉氏县| 鹤山市| 临高县| 同仁县| 白河县| 沙雅县| 元谋县| 尼玛县| 恩平市| 公安县| 青田县| 巨鹿县| 南华县| 瑞昌市| 基隆市| 平果县| 南丰县| 喀什市| 怀远县| 两当县| 巢湖市| 图木舒克市| 宿松县|