vue3组件通信(8种)

简介: vue3组件通信(8种)

vue3组件通信

props

通过setup语法糖来实现,下面是代码
父组件中
<template>
    <Childs :msg="msg"  :msgs="msgs"></Childs>
</template>
<script setup>
import { ref,reactive } from 'vue';
import Childs from './child.vue'
const msg = ref('这是传递给子组件的')
const msgs = reactive(['这是传递给子组件的'])
</script>
子组件
<template>子组件</template>
<script setup>
const props = defineProps({
    // msg:String
    msgs:{
        type:String,
        default:""
    }
})
console.log(props) //打印一下看能不能接收到
</script>

$emit

通过$emit实现子传父通信
<!-- $emit -->
<!-- Child.vue -->
<template>
    <button @click="handleClick">按钮</button>
</template>
<script setup>
import { defineEmits } from 'vue';
const emit = defineEmits(['myClick']);
const handleClick = () => {
    emit('myClick', '我是子组件的信息');
};
</script>
<!-- Parent.vue -->
<template>
    <child @myClick="onMyClick"></child>
</template>
<script setup>
import Child from './Child.vue';
const onMyClick = (msg) => {
    console.log(msg); // 这是父组件收到的信息
};
</script>

v-model

<!-- Parent.vue -->
<template>
    <div>
      <Child v-model:name="name"></Child>
      <p>{{ name }}</p>
    </div>
 </template>
  <script setup>
  import Child from './Child.vue';
  import { ref } from 'vue';
  const name = ref('111');
  </script>
<!-- Child.vue -->
<template>
   <p>{{ name }}</p>
  </template>
  <script setup>
  import { defineProps, defineEmits } from 'vue';
  const props = defineProps({
    name:String
  });
  </script>

$attrs

使用$attrs实现父组件像子组件传递数据
<!-- Parent.vue -->
<template>
    <Child :msg="msg" title="父组件传递的数据"></Child>
</template>
<script setup>
import Child from "./Child.vue";
import { ref } from "vue";
const msg = ref("我是父组件数据111111");
</script>
<!-- Child.vue -->
<template>
  <div>
    <p>{{ msg }}</p>
    <p>{{ title }}</p>
  </div>
</template>
<script setup>
import { defineProps, useAttrs } from "vue";
const props = defineProps({
  msg: String,
});
const attrs = useAttrs();
const title = attrs.title;
</script>

export/ref

父组件中
<template>
    <div>
      <Child :countRef="countRef" />
    </div>
  </template>
  <script setup>
  import { ref } from 'vue';
  import Child from './child.vue';
  const countRef = ref(0);
  </script>
<template>
  <div>
    子组件计数:{{ count }}
    <button @click="increment">+1</button>
  </div>
</template>
<script setup>
import { exportRef } from 'vue';
export default {
  props: {
    countRef: {
      type: Object,
      required: true,
    },
  },
  // 通过 export 导出 countRef
  setup(props) {
    const count = props.countRef;
    exportRef('count', count);
    const increment = () => {
      count.value++;
    };
    return {
      count,
      increment,
    };
  },
};
</script>

provide/inject

使用provide/inject实现跨层级通信
<!-- Parent.vue -->
<template>
    <div>
        <Child></Child>
    </div>
</template>
<script setup>
import { provide } from 'vue';
import Child from './child.vue';
const message = '我是父组件数据';
provide('message', message);
</script>
<!-- Child.vue -->
<template>
  <div>
    <p>子组件数据:{{ injectedMessage }}</p>
  </div>
</template>
<script setup>
import { inject, ref } from 'vue';
import { provide } from 'vue';
const injectedMessage = inject('message', '默认值');
</script>

vuex

使用vuex实现一个简单的通信需要以下几个步骤
1.下载vuex
npm install vuex
后续是代码
在 store.js 文件中创建 store 对象。
import { createStore } from 'vuex';
const store = createStore({
  state() {
    return {
      count: 0,
    };
  },
  mutations: {
    increment(state) {
      state.count++;
    },
  },
});
export default store;
<template>
  <div>
    <p>计数器:{{ count }}</p>
    <button @click="increment">+1</button>
  </div>
</template>
<script>
import { mapState, mapMutations } from 'vuex';
export default {
  computed: {
    ...mapState(['count']),
  },
  methods: {
    ...mapMutations(['increment']),
  },
};
</script>

mitt

跟vuex一样首先我们需要下载mitt库
npm install mitt
后续是代码
<template>
  <div>
    <p>计数器:{{ count }}</p>
  </div>
</template>
<script>
export default {
  data() {
    return {
      count: 0,
    };
  },
  created() {
    this.$bus.on('increment', () => {
      this.count++;
    });
  },
};
</script>
<template>
  <div>
    <button @click="increment">+1</button>
  </div>
</template>
<script>
export default {
  methods: {
    increment() {
      this.$bus.emit('increment');
    },
  },
};
</script>

到这里也就结束了

记得点赞哦


相关文章
|
16天前
|
存储 JavaScript 前端开发
vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
【10月更文挑战第21天】 vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
|
4天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
4天前
|
存储 JavaScript
Vue 组件间如何通信
Vue组件间通信是指在Vue应用中,不同组件之间传递数据和事件的方法。常用的方式有:props、自定义事件、$emit、$attrs、$refs、provide/inject、Vuex等。掌握这些方法可以实现父子组件、兄弟组件及跨级组件间的高效通信。
|
13天前
|
JavaScript 前端开发 开发者
Vue 3中的Proxy
【10月更文挑战第23天】Vue 3中的`Proxy`为响应式系统带来了更强大、更灵活的功能,解决了Vue 2中响应式系统的一些局限性,同时在性能方面也有一定的提升,为开发者提供了更好的开发体验和性能保障。
30 7
|
14天前
|
前端开发 数据库
芋道框架审批流如何实现(Cloud+Vue3)
芋道框架审批流如何实现(Cloud+Vue3)
36 3
|
13天前
|
JavaScript 数据管理 Java
在 Vue 3 中使用 Proxy 实现数据双向绑定的性能如何?
【10月更文挑战第23天】Vue 3中使用Proxy实现数据双向绑定在多个方面都带来了性能的提升,从更高效的响应式追踪、更好的初始化性能、对数组操作的优化到更优的内存管理等,使得Vue 3在处理复杂的应用场景和大量数据时能够更加高效和稳定地运行。
33 1
|
13天前
|
JavaScript 开发者
在 Vue 3 中使用 Proxy 实现数据的双向绑定
【10月更文挑战第23天】Vue 3利用 `Proxy` 实现了数据的双向绑定,无论是使用内置的指令如 `v-model`,还是通过自定义事件或自定义指令,都能够方便地实现数据与视图之间的双向交互,满足不同场景下的开发需求。
33 1
|
15天前
|
前端开发 JavaScript
简记 Vue3(一)—— setup、ref、reactive、toRefs、toRef
简记 Vue3(一)—— setup、ref、reactive、toRefs、toRef
|
16天前
Vue3 项目的 setup 函数
【10月更文挑战第23天】setup` 函数是 Vue3 中非常重要的一个概念,掌握它的使用方法对于开发高效、灵活的 Vue3 组件至关重要。通过不断的实践和探索,你将能够更好地利用 `setup` 函数来构建优秀的 Vue3 项目。
|
19天前
|
JavaScript API
vue3知识点:ref函数
vue3知识点:ref函数
29 2