Vue组件之间的通信

一、通信方式

  • Props 和 Events :通过父组件传递 props 给子组件,子组件使用**$emit** 发送事件到父组件。
  • Event Bus:使用一个中央事件总线来跨组件通信。
  • Vuex:使用 Vuex 进行全局状态管理,以便在任何组件间共享状态。
  • Provide / Inject :祖先组件使用 provide 传递数据,后代组件通过 **inject**接收数据。
  • $refs :父组件通过 **ref**获取子组件实例,直接调用其方法或访问属性。
  • Scoped Slots:使用插槽在父组件中传递数据到子组件,允许子组件根据传递的数据进行渲染。

二、应用举例

1、Props 和 Events

父组件 (Parent.vue)

javascript 复制代码
<template>
  <Child :message="parentMessage" @update="handleUpdate" />
</template>
<script>
export default {
  data() {
    return { parentMessage: 'Hello from parent' };
  },
  methods: {
    handleUpdate(newMessage) {
      this.parentMessage = newMessage;
    }
  }
}
</script>

子组件 (Child.vue)

javascript 复制代码
<template>
  <button @click="updateParent">Update Parent</button>
</template>
<script>
export default {
  props: ['message'],
  methods: {
    updateParent() {
      this.$emit('update', 'Hello from child');
    }
  }
}
</script>

2、Event Bus

事件总线 (eventBus.js)

javascript 复制代码
import Vue from 'vue';
export const EventBus = new Vue();

发送消息 (ComponentA.vue)

javascript 复制代码
<template>
  <button @click="sendMessage">Send Message</button>
</template>
<script>
import { EventBus } from './eventBus';
export default {
  methods: {
    sendMessage() {
      EventBus.$emit('message', 'Hello from Component A');
    }
  }
}
</script>

接收消息 (ComponentB.vue)

javascript 复制代码
<template>
  <p>{{ receivedMessage }}</p>
</template>
<script>
import { EventBus } from './eventBus';
export default {
  data() {
    return { receivedMessage: '' };
  },
  created() {
    EventBus.$on('message', (message) => {
      this.receivedMessage = message;
    });
  }
}
</script>

3、Vuex

Vuex Store (store.js)

javascript 复制代码
import Vue from 'vue';
import Vuex from 'vuex';

Vue.use(Vuex);

export default new Vuex.Store({
  state: {
    message: 'Hello from Vuex'
  },
  mutations: {
    setMessage(state, newMessage) {
      state.message = newMessage;
    }
  }
});

更新消息 (ComponentA.vue)

javascript 复制代码
<template>
  <button @click="updateMessage">Update Message</button>
</template>
<script>
import { mapMutations } from 'vuex';
export default {
  methods: {
    ...mapMutations(['setMessage']),
    updateMessage() {
      this.setMessage('Hello from Component A');
    }
  }
}
</script>

显示消息 (ComponentB.vue)

javascript 复制代码
<template>
  <p>{{ message }}</p>
</template>
<script>
import { mapState } from 'vuex';
export default {
  computed: {
    ...mapState(['message'])
  }
}
</script>

4、Provide / Inject

提供数据 (Ancestor.vue)

javascript 复制代码
<template>
  <Descendant />
</template>
<script>
export default {
  provide() {
    return {
      message: 'Hello from ancestor'
    };
  }
}
</script>

注入数据 (Descendant.vue)

javascript 复制代码
<template>
  <p>{{ message }}</p>
</template>
<script>
export default {
  inject: ['message']
}
</script>

5、$refs

父组件 (Parent.vue)

javascript 复制代码
<template>
  <Child ref="childComponent" />
  <button @click="callChildMethod">Call Child Method</button>
</template>
<script>
import Child from './Child.vue';
export default {
  components: { Child },
  methods: {
    callChildMethod() {
      this.$refs.childComponent.someMethod();
    }
  }
}
</script>

子组件 (Child.vue)

javascript 复制代码
<template>
  <p>Child Component</p>
</template>
<script>
export default {
  methods: {
    someMethod() {
      console.log('Method in child called!');
    }
  }
}
</script>

6、Scoped Slots

父组件 (Parent.vue)

javascript 复制代码
<template>
  <Child>
    <template v-slot:default="slotProps">
      <p>{{ slotProps.message }}</p>
    </template>
  </Child>
</template>
<script>
import Child from './Child.vue';
export default {
  components: { Child }
}
</script>

子组件 (Child.vue)

javascript 复制代码
<template>
  <slot :message="'Hello from child'"></slot>
</template>
<script>
export default {}
</script>
相关推荐
a11177630 分钟前
动森UI组件(开源 html animal-island-ui )
前端·javascript·ui·开源·html
KaMeidebaby32 分钟前
卡梅德生物技术快报|真核蛋白表达信号肽筛选实验全流程复盘
服务器·前端·数据库·人工智能·算法
ljt272496066133 分钟前
Vue笔记(六)--响应式
javascript·vue.js·笔记
threelab40 分钟前
Three.js 黑洞引力效果着色器 | 三维可视化 / AI 提示词
开发语言·javascript·着色器
万少1 小时前
万少的 Claude Code 入门教程
前端·人工智能·后端
এ慕ོ冬℘゜1 小时前
JS 前端基础高频面试题
开发语言·前端·javascript
放下华子我只抽RuiKe51 小时前
React 从入门到生产(八):测试与部署
前端·javascript·深度学习·react.js·前端框架·ecmascript·集成学习
Dxy12393102161 小时前
JS列表获取指定范围值的 N 种方法
开发语言·javascript·ecmascript
蜡笔小电芯1 小时前
【Electron】第2章—BrowserWindow 与 Electron 窗口机制
前端·javascript·electron
zhangxingchao1 小时前
AI 大模型面试核心二:微调、RAG、MCP、Agent 与工程落地
前端·人工智能·后端