您好,登錄后才能下訂單哦!
使用vue怎么實(shí)現(xiàn)組件通信傳值?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
父子組件通信:
子組件
<template> <div> <h4 @click="alerrt"> 我是子組件一</h4> <span>{{parentMessage}}</span> </div> </template> <script> export default{ props: ['parentMessage'], mounted() { // this.$emit('childEvent'); }, methods:{ alerrt(){ this.$emit('childEvent',{name:'zhangsan',age:10 }); } } } </script> <style scoped> </style>
父組件
<template> <div> <h3>父組件</h3> <span>父組件傳遞消息給子組件</span> <br> <router-view @childEvent="parentMethod" :parentMessage="parentMessage" /> <!-- <Child-one :parentMessage="parentMessage"></Child-one> --> <button type="" @click='extendTest'>extend</button> <div id="extend"></div> </div> </template> <script> import ChildOne from './ChildOne' export default{ components: { ChildOne }, methods: { parentMethod({name,age}) { alert(this.parentMessage); console.log(this.parentMessage,name,age); }, extendTest() { console.log('333'); var Extend = Vue.extend({ template: '<p>{{firstName}} {{lastName}} aka {{alias}}</p>', data: function () { return { firstName: 'Walter', lastName: 'White', alias: 'Heisenberg' } } }) new Extend().$mount('#extend') }, }, data () { return { parentMessage: '我是來自父組件的消息aaaa' } } } </script> <style scoped> </style>
兄弟組件通信:
在main,js里加
import Vue from 'vue' window.eventBus = new Vue();
在組件里
兄弟1組件:
window.eventBus.$emit('函數(shù)名稱', {參數(shù) 鍵:值});
兄弟2組件:
window.eventBus.$on('grouprecording',參數(shù) =>{ //處理數(shù)據(jù) })
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。
免責(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)容。