Vue组件通信

一、vue子组件向父组件传值

子组件向父组件传送值,主要是通过$emit方法来实现的

子组件

子组件通过$emit方法将数据发送给父组件,第一个参数表示在父组件中需要触发的函数名称,第二个参数表示要传递的值

<template>
  <!-- 子组件 -->
  <div>
    <button @click="passData">将数据传递给父组件</button>
  </div>
</template>

<script>
export default {
  data () {
    return {
      childData: '我是子组件的数据chilData'
    }
  },
  methods: {
    passData () {
      // this.$emit 接收两个参数,1、父元素接收方法 2、需要传递的数据
      this.$emit('passChildData', this.childData)
    }
  }
}
</script>

父组件
在父组件中触发子组件中派发的函数,获取子组件的值

<!-- 父组件 -->
<template>
  <div>
    <!-- @passChildData  子组件$emit 绑定的方法 -->
    <!-- add 父组件方法 -->
    <h1>父组件</h1>
    <h2>子组件传递过来的数据:{{ message }}</h2>
    <Child @passChildData="add" />
  </div>
</template>

<script>
// 引入子组件
import Child from './child'
export default {
  data () {
    return {
      message: ''
    }
  },
  components: {
    Child
  },
  methods: {
    add (data) {
      // data 子组件传递过来的数据
      this.message = data
    }
  }
}
</script>

二、vue父组件向子组件传值

父组件向子组件发送数据通过props属性来实现

父组件
将msg传递给子组件,通过v-bind的方式将值绑定到子组件上

<template>
  <!-- 父组件 -->
  <div>
    我是父组件下面是我的子组件
    <Child :childData="msg" />
  </div>
</template>

<script>
// 引入子组件
import Child from './child'
export default {
  components: {
    Child
  },
  data () {
    return {
      msg: '我是父组件的数据'
    }
  }
}
</script>

子组件
通过props属性来接收父组件的传值

<template>
  <!-- 子组件 -->
  <div>
    我是子组件,这是父组件传递过来的数据:{{ childData }}
  </div>
</template>

<script>
export default {
  // 接收父组件传递过来的参数名
  props: ['childData']
}
</script>

三、eventBus 任意两个组件之间传值

这种方法通过一个空的Vue实例作为中央事件总线(事件中心),用它来触发事件和监听事件,巧妙而轻量地实现了任何组件间的通信,包括父子、兄弟、跨级。当我们的项目比较大时,可以选择更好的状态管理解决方案vuex。
组件1

<template>
  <div>
    <h1>子组件1</h1>
    <button @click="postData"></button>
  </div>
</template>

<script>
import bus from './eventBus'
export default {
  data () {
    return {
      childData: '子组件1的数据'
    }
  },
  methods: {
    postData () {
      bus.$emit('passData', this.childData)
    }
  }
}
</script>

组件2

<template>
  <div>
    <h1>子组件2{{ msg }}</h1>
  </div>
</template>

<script>
import bus from './eventBus'
export default {
  data () {
    return {
      msg: ''
    }
  },
  mounted () {
    bus.$on('passData', (value) => {
      this.msg = value
    })
  }
}
</script>

eventBus

import Vue from 'vue'
export default new Vue()
### Vue 组件间的通信方法 Vue 提供了多种组件通信的方式,适用于不同的场景和需求。以下是常见的 Vue 组件通信方法及其实现技巧: #### 1. **Props 和 $emit** `props` 是父组件向子组件传递数据的主要方式,而 `$emit` 则用于子组件向父组件发送事件通知。 - 父组件通过 `props` 将数据传递到子组件中[^1]。 - 子组件可以通过调用 `$emit` 方法触发自定义事件,并将数据回传给父组件[^2]。 示例代码如下: ```vue <!-- ParentComponent.vue --> <template> <ChildComponent :message="parentMessage" @childEvent="handleChildEvent" /> </template> <script> import ChildComponent from './ChildComponent.vue'; export default { components: { ChildComponent }, data() { return { parentMessage: 'Hello from Parent', }; }, methods: { handleChildEvent(data) { console.log('Data received from child:', data); } } }; </script> ``` ```vue <!-- ChildComponent.vue --> <template> <div>{{ message }}</div> </template> <script> export default { props: ['message'], mounted() { this.$emit('childEvent', 'Hello from Child'); } }; </script> ``` --- #### 2. **Provide 和 Inject** `provide/inject` 主要用于跨多层嵌套的父子组件之间共享状态,适合全局配置或深层嵌套的情况。 示例代码如下: ```javascript // ParentComponent.vue export default { provide() { return { sharedState: this.sharedState, }; }, data() { return { sharedState: 'Shared Data', }; }, }; // DeeplyNestedChildComponent.vue export default { inject: ['sharedState'], created() { console.log(this.sharedState); // 输出 "Shared Data" }, }; ``` --- #### 3. **v-model (双向绑定)** `v-model` 实现了父子组件之间的双向绑定,通常用于表单输入控件。 示例代码如下: ```vue <!-- ParentComponent.vue --> <template> <CustomInput v-model="inputValue" /> </template> <script> import CustomInput from './CustomInput.vue'; export default { components: { CustomInput }, data() { return { inputValue: '', }; }, }; </script> ``` ```vue <!-- CustomInput.vue --> <template> <input :value="modelValue" @input="$emit('update:modelValue', $event.target.value)" /> </template> <script> export default { props: ['modelValue'], }; </script> ``` --- #### 4. **Vuex (集中式状态管理)** 对于复杂的大型项目,推荐使用 Vuex 来统一管理和分发状态。 示例代码如下: ```javascript // store.js import { createStore } from 'vuex'; const store = createStore({ state: { count: 0, }, mutations: { increment(state) { state.count++; }, }, }); export default store; ``` ```vue <!-- AnyComponent.vue --> <template> <button @click="increment">Increment Count</button> {{ count }} </template> <script> export default { computed: { count() { return this.$store.state.count; }, }, methods: { increment() { this.$store.commit('increment'); }, }, }; </script> ``` --- #### 5. **Mitt 或 Event Bus** 如果不想引入 Vuex,可以使用轻量级库 Mitt 创建一个简单的事件总线来处理非父子关系的组件通信。 示例代码如下: ```javascript // eventBus.js import mitt from 'mitt'; const emitter = mitt(); export default emitter; // ComponentA.vue emitter.emit('custom-event', payload); // ComponentB.vue emitter.on('custom-event', handlerFunction); ``` --- #### 6. **Expose/Ref** 在组合式 API 中,`ref` 可以用来访问子组件实例中的公开属性或方法,配合 `defineExpose` 使用。 示例代码如下: ```vue <!-- ParentComponent.vue --> <template> <ChildComponent ref="childRef" /> </template> <script setup> import { ref } from 'vue'; import ChildComponent from './ChildComponent.vue'; const childRef = ref(null); function callChildMethod() { childRef.value?.publicMethod(); } </script> ``` ```vue <!-- ChildComponent.vue --> <script setup> defineExpose({ publicMethod() {}, }); </script> ``` --- #### 7. **Attrs 和 Listeners** 当某些属性未被声明为 `props` 时,它们会自动成为 `attrs` 并向下传播;类似的还有 `$listeners`,不过在 Vue 3 中已被移除并替换为 `v-on`。 示例代码如下: ```vue <!-- GrandParentComponent.vue --> <template> <ParentComponent customAttr="test" @customEvent="handleCustomEvent" /> </template> ``` ```vue <!-- ParentComponent.vue --> <template> <ChildComponent v-bind="$attrs" v-on="$listeners" /> </template> <script> export default { inheritAttrs: false, // 防止 attrs 被挂载到根节点上 }; </script> ``` --- #### 总结 以上列举了几种主流的 Vue 组件通信方式,每种都有其适用范围和特点。开发者应根据具体业务需求选择合适的方案。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值