小計(jì): 開(kāi)發(fā)中遇到子組件需要調(diào)用兄弟組件中的方法,如下寫(xiě)個(gè)小demo記錄下心得,如果你有好的方法,請(qǐng)到評(píng)論區(qū)域指教
父組件示例代碼:
組件功能解析:
通過(guò)$emit獲取子組件事件,通過(guò)$ref調(diào)用子組件中事件,實(shí)現(xiàn)子組件二的click事件
調(diào)用兄弟組件一中的事件
<template> <div> <!-- 子組件1 --> <son1 ref="borther" :dataFromFather="dataFromFather"></son1> <!-- 子組件2 --> <son2 @triggerBrotherMethods="triggerBrotherMethods" :dataFromFather="dataFromFather"></son2> </div> </template> <script> // 引入子組件一 import son1 from './son1' // 引入子組件二 import son2 from './son2' export default { data() { return { dataFromFather: [] } }, // 注冊(cè)子組件 components: { son1, son2 }, methods: { // 子組件2中click事件 triggerBrotherMethods() { // 父組件通過(guò)$ref調(diào)用子組件1中的事件方法 this.$refs.borther[0].bortherMethods() }, } } </script> <style lang="less" scoped> /* .... */ </style>
子組件一
組件功能解析:
加載父組件數(shù)據(jù),進(jìn)行業(yè)務(wù)操作
<template> <!-- 子組件son2 --> <div @click="bortherMethods"> <!-- 父組件傳值展示 --> {{dataFromFather}} </div> </template> <script> export default { data() { return { } }, props: ['dataFromFather'], methods: { // 兄弟組件中的按鈕事件 bortherMethods() { // 子組件事件方法 ... }, } } </script> <style lang="less" scoped> /* .... */ </style>
子組件二:
組件功能解析:
加載父組件數(shù)據(jù),通過(guò)click事件emit傳給父組件
<template> <!-- 子組件son2 --> <div @click="triggerBrotherMethods"> <!-- 父組件傳值展示 --> {{dataFromFather}} </div> </template> <script> export default { data() { return { } }, props: ['dataFromFather'], methods: { // 觸發(fā)兄弟組件中的按鈕事件 triggerBrotherMethods() { this.$emit('clickBrotherBtn', true) }, } } </script> <style lang="less" scoped> /* .... */ </style>
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com