Vue3的7种和Vue2的12种组件通信

Vue3 组件通信方式

  • props
  • $emit
  • expose / ref
  • $attrs
  • v-model
  • provide / inject
  • Vuex

Vue3 通信使用写法

props

用 props 传数据给子组件有两种方法,如下

方法一,混合写法

// Parent.vue 传送
<child :msg1="msg1" :msg2="msg2"></child>
<script>
import child from "./child.vue"
import { ref, reactive } from "vue"
export default {data(){return {msg1:"这是传级子组件的信息1"}},setup(){// 创建一个响应式数据// 写法一 适用于基础类型  ref 还有其他用处,下面章节有介绍const msg2 = ref("这是传级子组件的信息2")// 写法二 适用于复杂类型,如数组、对象const msg2 = reactive(["这是传级子组件的信息2"])return {msg2}}
}
</script>// Child.vue 接收
<script>
export default {props: ["msg1", "msg2"],// 如果这行不写,下面就接收不到setup(props) {console.log(props) // { msg1:"这是传给子组件的信息1", msg2:"这是传给子组件的信息2" }},
}
</script>

方法二,纯 Vue3 写法

// Parent.vue 传送
<child :msg2="msg2"></child>
<script setup>import child from "./child.vue"import { ref, reactive } from "vue"const msg2 = ref("这是传给子组件的信息2")// 或者复杂类型const msg2 = reactive(["这是传级子组件的信息2"])
</script>// Child.vue 接收
<script setup>// 不需要引入 直接使用// import { defineProps } from "vue"const props = defineProps({// 写法一msg2: String// 写法二msg2:{type:String,default:""}})console.log(props) // { msg2:"这是传级子组件的信息2" }
</script>

注意:

如果父组件是混合写法,子组件纯 Vue3 写法的话,是接收不到父组件里 data 的属性,只能接收到父组件里 setup 函数里传的属性

如果父组件是纯 Vue3 写法,子组件混合写法,可以通过 props 接收到 data 和 setup 函数里的属性,但是子组件要是在 setup 里接收,同样只能接收到父组件中 setup 函数里的属性,接收不到 data 里的属性

官方也说了,既然用了 3,就不要写 2 了,所以不推荐混合写法。下面的例子,一律只用纯 Vue3 的写法,就不写混合写法了

$emit

// Child.vue 派发
<template>// 写法一<button @click="emit('myClick')">按钮</buttom>// 写法二<button @click="handleClick">按钮</buttom>
</template>
<script setup>// 方法一 适用于Vue3.2版本 不需要引入// import { defineEmits } from "vue"// 对应写法一const emit = defineEmits(["myClick","myClick2"])// 对应写法二const handleClick = ()=>{emit("myClick", "这是发送给父组件的信息")}// 方法二 不适用于 Vue3.2版本,该版本 useContext()已废弃import { useContext } from "vue"const { emit } = useContext()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>

expose / ref

父组件获取子组件的属性或者调用子组件方法

// Child.vue
<script setup>// 方法一 不适用于Vue3.2版本,该版本 useContext()已废弃import { useContext } from "vue"const ctx = useContext()// 对外暴露属性方法等都可以ctx.expose({childName: "这是子组件的属性",someMethod(){console.log("这是子组件的方法")}})// 方法二 适用于Vue3.2版本, 不需要引入// import { defineExpose } from "vue"defineExpose({childName: "这是子组件的属性",someMethod(){console.log("这是子组件的方法")}})
</script>// Parent.vue  注意 ref="comp"
<template><child ref="comp"></child><button @click="handlerClick">按钮</button>
</template>
<script setup>import child from "./child.vue"import { ref } from "vue"const comp = ref(null)const handlerClick = () => {console.log(comp.value.childName) // 获取子组件对外暴露的属性comp.value.someMethod() // 调用子组件对外暴露的方法}
</script>

attrs

attrs:包含父作用域里除 class 和 style 除外的非 props 属性集合

// Parent.vue 传送
<child :msg1="msg1" :msg2="msg2" title="3333"></child>
<script setup>import child from "./child.vue"import { ref, reactive } from "vue"const msg1 = ref("1111")const msg2 = ref("2222")
</script>// Child.vue 接收
<script setup>import { defineProps, useContext, useAttrs } from "vue"// 3.2版本不需要引入 defineProps,直接用const props = defineProps({msg1: String})// 方法一 不适用于 Vue3.2版本,该版本 useContext()已废弃const ctx = useContext()// 如果没有用 props 接收 msg1 的话就是 { msg1: "1111", msg2:"2222", title: "3333" }console.log(ctx.attrs) // { msg2:"2222", title: "3333" }// 方法二 适用于 Vue3.2版本const attrs = useAttrs()console.log(attrs) // { msg2:"2222", title: "3333" }
</script>

v-model

可以支持多个数据双向绑定

// Parent.vue
<child v-model:key="key" v-model:value="value"></child>
<script setup>import child from "./child.vue"import { ref, reactive } from "vue"const key = ref("1111")const value = ref("2222")
</script>// Child.vue
<template><button @click="handlerClick">按钮</button>
</template>
<script setup>// 方法一  不适用于 Vue3.2版本,该版本 useContext()已废弃import { useContext } from "vue"const { emit } = useContext()// 方法二 适用于 Vue3.2版本,不需要引入// import { defineEmits } from "vue"const emit = defineEmits(["key","value"])// 用法const handlerClick = () => {emit("update:key", "新的key")emit("update:value", "新的value")}
</script>

provide / inject

provide / inject 为依赖注入

provide:可以让我们指定想要提供给后代组件的数据或

inject:在任何后代组件中接收想要添加在这个组件上的数据,不管组件嵌套多深都可以直接拿来用

// Parent.vue
<script setup>import { provide } from "vue"provide("name", "沐华")
</script>// Child.vue
<script setup>import { inject } from "vue"const name = inject("name")console.log(name) // 沐华
</script>

Vuex

// store/index.js
import { createStore } from "vuex"
export default createStore({state:{ count: 1 },getters:{getCount: state => state.count},mutations:{add(state){state.count++}}
})// main.js
import { createApp } from "vue"
import App from "./App.vue"
import store from "./store"
createApp(App).use(store).mount("#app")// Page.vue
// 方法一 直接使用
<template><div>{{ $store.state.count }}</div><button @click="$store.commit('add')">按钮</button>
</template>// 方法二 获取
<script setup>import { useStore, computed } from "vuex"const store = useStore()console.log(store.state.count) // 1const count = computed(()=>store.state.count) // 响应式,会随着vuex数据改变而改变console.log(count) // 1 
</script>

Vue2.x 组件通信方式

Vue2.x 组件通信共有12种

  1. props
  2. $emit / v-on
  3. .sync
  4. v-model
  5. ref
  6. children/parent
  7. attrs/listeners
  8. provide / inject
  9. EventBus
  10. Vuex
  11. $root
  12. slot

父子组件通信可以用:

  • props
  • $emit / v-on
  • attrs/listeners
  • ref
  • .sync
  • v-model
  • children/parent

兄弟组件通信可以用:

  • EventBus
  • Vuex
  • $parent

跨层级组件通信可以用:

  • provide/inject
  • EventBus
  • Vuex
  • attrs/listeners
  • $root

Vue2.x 通信使用写法

下面把每一种组件通信方式的写法一一列出

1. props

父组件向子组件传送数据,这应该是最常用的方式了

子组件接收到数据之后,不能直接修改父组件的数据。会报错,所以当父组件重新渲染时,数据会被覆盖。如果子组件内要修改的话推荐使用 computed

// Parent.vue 传送
<template><child :msg="msg"></child>
</template>// Child.vue 接收
export default {// 写法一 用数组接收props:['msg'],// 写法二 用对象接收,可以限定接收的数据类型、设置默认值、验证等props:{msg:{type:String,default:'这是默认数据'}},mounted(){console.log(this.msg)},
}

2. .sync

可以帮我们实现父组件向子组件传递的数据 的双向绑定,所以子组件接收到数据后可以直接修改,并且会同时修改父组件的数据

// Parent.vue
<template><child :page.sync="page"></child>
</template>
<script>
export default {data(){return {page:1}}
}// Child.vue
export default {props:["page"],computed(){// 当我们在子组件里修改 currentPage 时,父组件的 page 也会随之改变currentPage {get(){return this.page},set(newVal){this.$emit("update:page", newVal)}}}
}
</script>

3. v-model

和 .sync 类似,可以实现将父组件传给子组件的数据为双向绑定,子组件通过 $emit 修改父组件的数据

// Parent.vue
<template><child v-model="value"></child>
</template>
<script>
export default {data(){return {value:1}}
}// Child.vue
<template><input :value="value" @input="handlerChange">
</template>
export default {props:["value"],// 可以修改事件名,默认为 inputmodel:{event:"updateValue"},methods:{handlerChange(e){this.$emit("input", e.target.value)// 如果有上面的重命名就是这样this.$emit("updateValue", e.target.value)}}
}
</script>

4. ref

ref 如果在普通的DOM元素上,引用指向的就是该DOM元素;

如果在子组件上,引用的指向就是子组件实例,然后父组件就可以通过 ref 主动获取子组件的属性或者调用子组件的方法

// Child.vue
export default {data(){return {name:"沐华"}},methods:{someMethod(msg){console.log(msg)}}
}// Parent.vue
<template><child ref="child"></child>
</template>
<script>
export default {mounted(){const child = this.$refs.childconsole.log(child.name) // 沐华child.someMethod("调用了子组件的方法")}
}
</script>

5. $emit / v-on

子组件通过派发事件的方式给父组件数据,或者触发父组件更新等操作

// Child.vue 派发
export default {data(){return { msg: "这是发给父组件的信息" }},methods: {handleClick(){this.$emit("sendMsg",this.msg)}},
}
// Parent.vue 响应
<template><child v-on:sendMsg="getChildMsg"></child>// 或 简写<child @sendMsg="getChildMsg"></child>
</template>export default {methods:{getChildMsg(msg){console.log(msg) // 这是父组件接收到的消息}}
}

6. attrs/listeners

多层嵌套组件传递数据时,如果只是传递数据,而不做中间处理的话就可以用这个,比如父组件向孙子组件传递数据时

$attrs:包含父作用域里除 class 和 style 除外的非 props 属性集合。通过 this.获取父作用域中所有符合条件的属性集合,然后还要继续传给子组件内部的其他组件,就可以通过�����获取父作用域中所有符合条件的属性集合,然后还要继续传给子组件内部的其他组件,就可以通过v-bind=attrs"

$listeners:包含父作用域里 .native 除外的监听事件集合。如果还要继续传给子组件内部的其他组件,就可以通过 v-on="$linteners"

使用方式是相同的

// Parent.vue
<template><child :name="name" title="1111" ></child>
</template
export default{data(){return {name:"沐华"}}
}// Child.vue
<template>// 继续传给孙子组件<sun-child v-bind="$attrs"></sun-child>
</template>
export default{props:["name"], // 这里可以接收,也可以不接收mounted(){// 如果props接收了name 就是 { title:1111 },否则就是{ name:"沐华", title:1111 }console.log(this.$attrs)}
}

7. �ℎ������/parent

$children:获取到一个包含所有子组件(不包含孙子组件)的 VueComponent 对象数组,可以直接拿到子组件中所有数据和方法等

$parent:获取到一个父节点的 VueComponent 对象,同样包含父节点中所有数据和方法等

// Parent.vue
export default{mounted(){this.$children[0].someMethod() // 调用第一个子组件的方法this.$children[0].name // 获取第一个子组件中的属性}
}// Child.vue
export default{mounted(){this.$parent.someMethod() // 调用父组件的方法this.$parent.name // 获取父组件中的属性}
}

8. provide / inject

provide / inject 为依赖注入,说是不推荐直接用于应用程序代码中,但是在一些插件或组件库里却是被常用,所以我觉得用也没啥,还挺好用的

provide:可以让我们指定想要提供给后代组件的数据或方法

inject:在任何后代组件中接收想要添加在这个组件上的数据或方法,不管组件嵌套多深都可以直接拿来用

要注意的是 provide 和 inject 传递的数据不是响应式的,也就是说用 inject 接收来数据后,provide 里的数据改变了,后代组件中的数据不会改变,除非传入的就是一个可监听的对象

所以建议还是传递一些常量或者方法

// 父组件
export default{// 方法一 不能获取 methods 中的方法provide:{name:"沐华",age: this.data中的属性},// 方法二 不能获取 data 中的属性provide(){return {name:"沐华",someMethod:this.someMethod // methods 中的方法}},methods:{someMethod(){console.log("这是注入的方法")}}
}// 后代组件
export default{inject:["name","someMethod"],mounted(){console.log(this.name)this.someMethod()}
}

9. EventBus

EventBus 是中央事件总线,不管是父子组件,兄弟组件,跨层级组件等都可以使用它完成通信操作

定义方式有三种

// 方法一
// 抽离成一个单独的 js 文件 Bus.js ,然后在需要的地方引入
// Bus.js
import Vue from "vue"
export default new Vue()// 方法二 直接挂载到全局
// main.js
import Vue from "vue"
Vue.prototype.$bus = new Vue()// 方法三 注入到 Vue 根对象上
// main.js
import Vue from "vue"
new Vue({el:"#app",data:{Bus: new Vue()}
})

使用如下,以方法一按需引入为例

// 在需要向外部发送自定义事件的组件内
<template><button @click="handlerClick">按钮</button>
</template>
import Bus from "./Bus.js"
export default{methods:{handlerClick(){// 自定义事件名 sendMsgBus.$emit("sendMsg", "这是要向外部发送的数据")}}
}// 在需要接收外部事件的组件内
import Bus from "./Bus.js"
export default{mounted(){// 监听事件的触发Bus.$on("sendMsg", data => {console.log("这是接收到的数据:", data)})},beforeDestroy(){// 取消监听Bus.$off("sendMsg")}
}

10. Vuex

Vuex 是状态管理器,集中式存储管理所有组件的状态。这一块内容过长,如果基础不熟的话可以看这个Vuex,然后大致用法如下

比如创建这样的文件结构

index.js 里内容如下

import Vue from 'vue'
import Vuex from 'vuex'
import getters from './getters'
import actions from './actions'
import mutations from './mutations'
import state from './state'
import user from './modules/user'Vue.use(Vuex)const store = new Vuex.Store({modules: {user},getters,actions,mutations,state
})
export default store

然后在 main.js 引入

import Vue from "vue"
import store from "./store"
new Vue({el:"#app",store,render: h => h(App)
})

然后在需要的使用组件里

import { mapGetters, mapMutations } from "vuex"
export default{computed:{// 方式一 然后通过 this.属性名就可以用了...mapGetters(["引入getters.js里属性1","属性2"])// 方式二...mapGetters("user", ["user模块里的属性1","属性2"])},methods:{// 方式一 然后通过 this.属性名就可以用了...mapMutations(["引入mutations.js里的方法1","方法2"])// 方式二...mapMutations("user",["引入user模块里的方法1","方法2"])}
}// 或者也可以这样获取
this.$store.state.xxx
this.$store.state.user.xxx

11. $root

$root 可以拿到 App.vue 里的数据和方法

12. slot

就是把子组件的数据通过插槽的方式传给父组件使用,然后再插回来

// Child.vue
<template><div><slot :user="user"></slot></div>
</template>
export default{data(){return {user:{ name:"沐华" }}}
}// Parent.vue
<template><div><child v-slot="slotProps">{{ slotProps.user.name }}</child></div>
</template>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/149699.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

静态共享代理和静态独享有哪些区别?怎么选择?

在软件开发中&#xff0c;静态共享代理&#xff08;Static Proxy&#xff09;和静态独享&#xff08;Monostatic&#xff09;是两种常见的软件设计模式。这两种模式在实现方式、使用场景以及优缺点上存在一定的差异&#xff0c;下面将详细介绍它们的区别以及如何进行选择。 一、…

rabbitmq默认交换机锁绑定的routingkey-待研究

例如这个是我的一个消息队列&#xff0c;它默认绑定的交换机是 什么类型呢? 看到这个图&#xff0c;感觉应该是一个默认的交换机&#xff0c;因为是default exchange 于是来到交换机来看看其他默认的交换机&#xff1a; 这里可以看到默认的交换机是direct&#xff08;应该没…

uniapp中实现圆形进度条的方式有哪些?

前言 在uniapp开发小程序或者apk时&#xff0c;页面需要用到一个圆形进度条&#xff08;带文字和百分比的&#xff09;&#xff0c;自己也自定义过一个,但是有一点小问题&#xff0c;咱先展示如何引入插件市场的在介绍自定义的&#xff01;一共四种&#xff0c;但是你需要考虑自…

【openGauss/MogDB的TPCH测试】

TPC-H是一个决策支持基准&#xff08;Decision Support Benchmark&#xff09;&#xff0c;它由一套面向业务的特别查询和并发数据修改组成。查询和填充数据库的数据具有广泛的行业相关性。这个基准测试演示了检查大量数据、执行高度复杂的查询并回答关键业务问题的决策支持系统…

利用python下的matplotlib库绘制能突出显示的饼状图

需求描述 根据已有的数据绘制一个占比图&#xff0c;期望能对其中的部分占比成分进行突出显示。 原始数据如下&#xff1a; 国外投资&#xff08;5%&#xff09;、公司投资&#xff08;8%&#xff09;、地方投资&#xff08;7%&#xff09;、中央财政&#xff08;80%&#xff…

Unity 中 TextMesh Pro 认识学习

TextMesh Pro User Guide | TextMeshPro | 3.0.6官方文档 有两个 TextMesh Pro 组件可用。 第一个 TMP 文本组件的类型为 <TextMeshPro> 旨在与 MeshRenderer 配合使用。该组件是旧版 TextMesh 组件的理想替代品。 要添加新的 <TextMeshPro> 文本对象&#xff…

vs2017打开工程提示若要解决此问题,请使用以下选择启动 Visual Studio 安装程序: 用于 x86 和 x64 的 Visual C++ MFC

下载安装文件。 下载之后点击C项目&#xff0c;他会提示需要安装编译依赖。这个时候需要选择 用于 x86 和 x64 的 Visual C MFCWindows SDK 版本8.1 点击右下角的安装等待即可 error MSB8036: 找不到 Windows SDK 版本8.1。请安装所需的版本的 Windows SDK 或者在项目属性页…

R语言:利用biomod2进行生态位建模

在这里主要是分享一个不错的代码&#xff0c;喜欢的可以慢慢研究。我看了一遍&#xff0c;觉得里面有很多有意思的东西&#xff0c;供大家学习和参考。 利用PCA轴总结的70个环境变量&#xff0c;利用biomod2进行生态位建模&#xff1a; #------------------------------------…

.NET 8 正式 GA 遥遥领先

.NET 8 一正式 已正式 GA。 微软称 .NET 8 提供了数以千计的性能、稳定性和安全性改进&#xff0c;以及平台和工具增强功能&#xff0c;有助于提高开发者的工作效率和创新速度。 比如 .NET 8 为 Android 和 WASM 引入了全新的 AOT 模式、改进 System.Text.Json&#xff0c;以…

Spark 平障录

Profile Profile 是最重要的第一环。 利用好 spark UI 和 yarn container log分析业务代码&#xff0c;对其计算代价进行预判建设基准&#xff0c;进行对比&#xff0c;比如application id 进行对比&#xff0c;精确到 job DAG 环节 充分利用 UI Stage 页面 页头 summary&…

Python编程基础(华为在线课程)

一、免费课程链接 https://e.huawei.com/cn/talent/outPage/#/sxz-course/home?courseId3mCm7X8-UyWyS6pioCSJeUI0yFo 二、学习环境搭建 1、下载anaconda&#xff08;python3.7版本&#xff09; 清华镜像地址&#xff1a; https://mirrors.tuna.tsinghua.edu.cn/anacond…

在通用jar包中引入其他spring boot starter,并在通用jar包中直接配置这些starter的yml相关属性

场景 我在通用jar包中引入 spring-boot-starter-actuator 这样希望引用通用jar的所有服务都可以直接使用 actuator 中的功能&#xff0c; 问题在于&#xff0c;正常情况下&#xff0c;actuator的配置都写在每个项目的yml文件中&#xff0c;这就意味着&#xff0c;虽然每个项目…

数据结构与算法编程题3

长度为n的顺序表&#xff0c;删除线性表所有值为x的元素&#xff0c;使得时间复杂度为O(n)&#xff0c;空间复杂度为O(1) #include <iostream> using namespace std;typedef int ElemType; #define Maxsize 100 #define OK 1 #define ERROR 0 typedef struct SqList {E…

CorelDraw2024(CDR)- 矢量图制作软件介绍

在当今数字化时代&#xff0c;平面设计已成为营销、品牌推广和创意表达中不可或缺的元素。平面设计必备三大软件Adebo PhotoShop、CorelDraw、Adobe illustrator, 今天小编就详细介绍其中之一的CorelDraw软件。为什么这款软件在设计界赢得了声誉&#xff0c;并成为了设计师的无…

Ubuntu——卸载、安装CUDA

【注】WSL的Ubuntu是不用安装CUDA的&#xff0c;因为它使用的是Windows的显卡驱动&#xff0c;所以如果WSL的CUDA出了问题&#xff0c;重新安装WSL即可&#xff01; 1、卸载 安装完CUDA后&#xff0c;会提示如果要卸载CUDA可以使用下列方法。 首先终端进入cuda-uninstaller所…

LeetCode【92】翻转链表II

题目&#xff1a; 思路&#xff1a; https://blog.csdn.net/DarkAndGrey/article/details/122146216 public ListNode reverseBetween(ListNode head, int left, int right) {if(head null || right left){return head;// 头节点为null&#xff0c;链表为空&#xff0c;反…

微服务学习|Nacos配置管理:统一配置管理、配置热更新、配置共享、搭建Nacos集群

统一配置管理 在微服务当中&#xff0c;提供一个配置中心来将一些配置提取出来&#xff0c;进行统一的使用&#xff0c;Nacos既可以充当注册中心&#xff0c;也提供配置中心的功能。 1.在Nacos中添加配置文件 在Nacos控制台&#xff0c;我们可以在配置管理中&#xff0c;添加…

【latex】公式推导等号对齐

使用aligned进行多行公式对齐&#xff0c;&作为对齐的节点&#xff0c;\作为公式换行 \begin{equation} \begin{aligned}a& bc \\& cd \end{aligned} \end{equation}

echarts 中如何添加左右滚动条 数据如何进行堆叠如何配置那些数据使用那个数据轴

左右滚动条的效果 此项的具体配置可参考 https://echarts.apache.org/zh/option.html#dataZoom-inside.moveOnMouseWheel dataZoom: [{id: dataZoomX,type: inside,// start: 0,// end: this.xAxis.length > 5 ? 10 : 100,startValue: this.xAxis.length > 5 ? 5 : 0,/…

新版mmdetection3d将3D bbox绘制到图像

环境信息 使用 python mmdet3d/utils/collect_env.py收集环境信息 sys.platform: linux Python: 3.7.12 | packaged by conda-forge | (default, Oct 26 2021, 06:08:21) [GCC 9.4.0] CUDA available: True numpy_random_seed: 2147483648 GPU 0,1: NVIDIA GeForce RTX 3090 …