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


    Vue3 组件通信方式

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

    Vue3 通信使用写法

    props

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

    方法一,混合写法

    1. // Parent.vue 传送
    2. <child :msg1="msg1" :msg2="msg2"></child>
    3. <script>
    4. import child from "./child.vue"
    5. import { ref, reactive } from "vue"
    6. export default {
    7. data(){
    8. return {
    9. msg1:"这是传级子组件的信息1"
    10. }
    11. },
    12. setup(){
    13. // 创建一个响应式数据
    14. // 写法一 适用于基础类型 ref 还有其他用处,下面章节有介绍
    15. const msg2 = ref("这是传级子组件的信息2")
    16. // 写法二 适用于复杂类型,如数组、对象
    17. const msg2 = reactive(["这是传级子组件的信息2"])
    18. return {
    19. msg2
    20. }
    21. }
    22. }
    23. </script>
    24. // Child.vue 接收
    25. <script>
    26. export default {
    27. props: ["msg1", "msg2"],// 如果这行不写,下面就接收不到
    28. setup(props) {
    29. console.log(props) // { msg1:"这是传给子组件的信息1", msg2:"这是传给子组件的信息2" }
    30. },
    31. }
    32. </script>

    方法二,纯 Vue3 写法

    1. // Parent.vue 传送
    2. <child :msg2="msg2"></child>
    3. <script setup>
    4. import child from "./child.vue"
    5. import { ref, reactive } from "vue"
    6. const msg2 = ref("这是传给子组件的信息2")
    7. // 或者复杂类型
    8. const msg2 = reactive(["这是传级子组件的信息2"])
    9. </script>
    10. // Child.vue 接收
    11. <script setup>
    12. // 不需要引入 直接使用
    13. // import { defineProps } from "vue"
    14. const props = defineProps({
    15. // 写法一
    16. msg2: String
    17. // 写法二
    18. msg2:{
    19. type:String,
    20. default:""
    21. }
    22. })
    23. console.log(props) // { msg2:"这是传级子组件的信息2" }
    24. </script>

    注意:

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

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

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

    $emit

    1. // Child.vue 派发
    2. <template>
    3. // 写法一
    4. <button @click="emit('myClick')">按钮</buttom>
    5. // 写法二
    6. <button @click="handleClick">按钮</buttom>
    7. </template>
    8. <script setup>
    9. // 方法一 适用于Vue3.2版本 不需要引入
    10. // import { defineEmits } from "vue"
    11. // 对应写法一
    12. const emit = defineEmits(["myClick","myClick2"])
    13. // 对应写法二
    14. const handleClick = ()=>{
    15. emit("myClick", "这是发送给父组件的信息")
    16. }
    17. // 方法二 不适用于 Vue3.2版本,该版本 useContext()已废弃
    18. import { useContext } from "vue"
    19. const { emit } = useContext()
    20. const handleClick = ()=>{
    21. emit("myClick", "这是发送给父组件的信息")
    22. }
    23. </script>
    24. // Parent.vue 响应
    25. <template>
    26. <child @myClick="onMyClick"></child>
    27. </template>
    28. <script setup>
    29. import child from "./child.vue"
    30. const onMyClick = (msg) => {
    31. console.log(msg) // 这是父组件收到的信息
    32. }
    33. </script>

    expose / ref

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

    1. // Child.vue
    2. <script setup>
    3. // 方法一 不适用于Vue3.2版本,该版本 useContext()已废弃
    4. import { useContext } from "vue"
    5. const ctx = useContext()
    6. // 对外暴露属性方法等都可以
    7. ctx.expose({
    8. childName: "这是子组件的属性",
    9. someMethod(){
    10. console.log("这是子组件的方法")
    11. }
    12. })
    13. // 方法二 适用于Vue3.2版本, 不需要引入
    14. // import { defineExpose } from "vue"
    15. defineExpose({
    16. childName: "这是子组件的属性",
    17. someMethod(){
    18. console.log("这是子组件的方法")
    19. }
    20. })
    21. </script>
    22. // Parent.vue 注意 ref="comp"
    23. <template>
    24. <child ref="comp"></child>
    25. <button @click="handlerClick">按钮</button>
    26. </template>
    27. <script setup>
    28. import child from "./child.vue"
    29. import { ref } from "vue"
    30. const comp = ref(null)
    31. const handlerClick = () => {
    32. console.log(comp.value.childName) // 获取子组件对外暴露的属性
    33. comp.value.someMethod() // 调用子组件对外暴露的方法
    34. }
    35. </script>

    attrs

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

    1. // Parent.vue 传送
    2. <child :msg1="msg1" :msg2="msg2" title="3333"></child>
    3. <script setup>
    4. import child from "./child.vue"
    5. import { ref, reactive } from "vue"
    6. const msg1 = ref("1111")
    7. const msg2 = ref("2222")
    8. </script>
    9. // Child.vue 接收
    10. <script setup>
    11. import { defineProps, useContext, useAttrs } from "vue"
    12. // 3.2版本不需要引入 defineProps,直接用
    13. const props = defineProps({
    14. msg1: String
    15. })
    16. // 方法一 不适用于 Vue3.2版本,该版本 useContext()已废弃
    17. const ctx = useContext()
    18. // 如果没有用 props 接收 msg1 的话就是 { msg1: "1111", msg2:"2222", title: "3333" }
    19. console.log(ctx.attrs) // { msg2:"2222", title: "3333" }
    20. // 方法二 适用于 Vue3.2版本
    21. const attrs = useAttrs()
    22. console.log(attrs) // { msg2:"2222", title: "3333" }
    23. </script>

    v-model

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

    1. // Parent.vue
    2. <child v-model:key="key" v-model:value="value"></child>
    3. <script setup>
    4. import child from "./child.vue"
    5. import { ref, reactive } from "vue"
    6. const key = ref("1111")
    7. const value = ref("2222")
    8. </script>
    9. // Child.vue
    10. <template>
    11. <button @click="handlerClick">按钮</button>
    12. </template>
    13. <script setup>
    14. // 方法一 不适用于 Vue3.2版本,该版本 useContext()已废弃
    15. import { useContext } from "vue"
    16. const { emit } = useContext()
    17. // 方法二 适用于 Vue3.2版本,不需要引入
    18. // import { defineEmits } from "vue"
    19. const emit = defineEmits(["key","value"])
    20. // 用法
    21. const handlerClick = () => {
    22. emit("update:key", "新的key")
    23. emit("update:value", "新的value")
    24. }
    25. </script>

    provide / inject

    provide / inject 为依赖注入

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

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

    1. // Parent.vue
    2. <script setup>
    3. import { provide } from "vue"
    4. provide("name", "沐华")
    5. </script>
    6. // Child.vue
    7. <script setup>
    8. import { inject } from "vue"
    9. const name = inject("name")
    10. console.log(name) // 沐华
    11. </script>

    Vuex

    1. // store/index.js
    2. import { createStore } from "vuex"
    3. export default createStore({
    4. state:{ count: 1 },
    5. getters:{
    6. getCount: state => state.count
    7. },
    8. mutations:{
    9. add(state){
    10. state.count++
    11. }
    12. }
    13. })
    14. // main.js
    15. import { createApp } from "vue"
    16. import App from "./App.vue"
    17. import store from "./store"
    18. createApp(App).use(store).mount("#app")
    19. // Page.vue
    20. // 方法一 直接使用
    21. <template>
    22. <div>{{ $store.state.count }}</div>
    23. <button @click="$store.commit('add')">按钮</button>
    24. </template>
    25. // 方法二 获取
    26. <script setup>
    27. import { useStore, computed } from "vuex"
    28. const store = useStore()
    29. console.log(store.state.count) // 1
    30. const count = computed(()=>store.state.count) // 响应式,会随着vuex数据改变而改变
    31. console.log(count) // 1
    32. </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

    1. // Parent.vue 传送
    2. <template>
    3. <child :msg="msg"></child>
    4. </template>
    5. // Child.vue 接收
    6. export default {
    7. // 写法一 用数组接收
    8. props:['msg'],
    9. // 写法二 用对象接收,可以限定接收的数据类型、设置默认值、验证等
    10. props:{
    11. msg:{
    12. type:String,
    13. default:'这是默认数据'
    14. }
    15. },
    16. mounted(){
    17. console.log(this.msg)
    18. },
    19. }

    2. .sync

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

    1. // Parent.vue
    2. <template>
    3. <child :page.sync="page"></child>
    4. </template>
    5. <script>
    6. export default {
    7. data(){
    8. return {
    9. page:1
    10. }
    11. }
    12. }
    13. // Child.vue
    14. export default {
    15. props:["page"],
    16. computed(){
    17. // 当我们在子组件里修改 currentPage 时,父组件的 page 也会随之改变
    18. currentPage {
    19. get(){
    20. return this.page
    21. },
    22. set(newVal){
    23. this.$emit("update:page", newVal)
    24. }
    25. }
    26. }
    27. }
    28. </script>

    3. v-model

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

    1. // Parent.vue
    2. <template>
    3. <child v-model="value"></child>
    4. </template>
    5. <script>
    6. export default {
    7. data(){
    8. return {
    9. value:1
    10. }
    11. }
    12. }
    13. // Child.vue
    14. <template>
    15. <input :value="value" @input="handlerChange">
    16. </template>
    17. export default {
    18. props:["value"],
    19. // 可以修改事件名,默认为 input
    20. model:{
    21. event:"updateValue"
    22. },
    23. methods:{
    24. handlerChange(e){
    25. this.$emit("input", e.target.value)
    26. // 如果有上面的重命名就是这样
    27. this.$emit("updateValue", e.target.value)
    28. }
    29. }
    30. }
    31. </script>

    4. ref

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

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

    1. // Child.vue
    2. export default {
    3. data(){
    4. return {
    5. name:"沐华"
    6. }
    7. },
    8. methods:{
    9. someMethod(msg){
    10. console.log(msg)
    11. }
    12. }
    13. }
    14. // Parent.vue
    15. <template>
    16. <child ref="child"></child>
    17. </template>
    18. <script>
    19. export default {
    20. mounted(){
    21. const child = this.$refs.child
    22. console.log(child.name) // 沐华
    23. child.someMethod("调用了子组件的方法")
    24. }
    25. }
    26. </script>

    5. $emit / v-on

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

    1. // Child.vue 派发
    2. export default {
    3. data(){
    4. return { msg: "这是发给父组件的信息" }
    5. },
    6. methods: {
    7. handleClick(){
    8. this.$emit("sendMsg",this.msg)
    9. }
    10. },
    11. }
    12. // Parent.vue 响应
    13. <template>
    14. <child v-on:sendMsg="getChildMsg"></child>
    15. // 或 简写
    16. <child @sendMsg="getChildMsg"></child>
    17. </template>
    18. export default {
    19. methods:{
    20. getChildMsg(msg){
    21. console.log(msg) // 这是父组件接收到的消息
    22. }
    23. }
    24. }

    6. attrs/listeners

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

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

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

    使用方式是相同的

    1. // Parent.vue
    2. <template>
    3. <child :name="name" title="1111" ></child>
    4. </template
    5. export default{
    6. data(){
    7. return {
    8. name:"沐华"
    9. }
    10. }
    11. }
    12. // Child.vue
    13. <template>
    14. // 继续传给孙子组件
    15. <sun-child v-bind="$attrs"></sun-child>
    16. </template>
    17. export default{
    18. props:["name"], // 这里可以接收,也可以不接收
    19. mounted(){
    20. // 如果props接收了name 就是 { title:1111 },否则就是{ name:"沐华", title:1111 }
    21. console.log(this.$attrs)
    22. }
    23. }

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

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

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

    1. // Parent.vue
    2. export default{
    3. mounted(){
    4. this.$children[0].someMethod() // 调用第一个子组件的方法
    5. this.$children[0].name // 获取第一个子组件中的属性
    6. }
    7. }
    8. // Child.vue
    9. export default{
    10. mounted(){
    11. this.$parent.someMethod() // 调用父组件的方法
    12. this.$parent.name // 获取父组件中的属性
    13. }
    14. }

    8. provide / inject

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

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

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

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

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

    1. // 父组件
    2. export default{
    3. // 方法一 不能获取 methods 中的方法
    4. provide:{
    5. name:"沐华",
    6. age: this.data中的属性
    7. },
    8. // 方法二 不能获取 data 中的属性
    9. provide(){
    10. return {
    11. name:"沐华",
    12. someMethod:this.someMethod // methods 中的方法
    13. }
    14. },
    15. methods:{
    16. someMethod(){
    17. console.log("这是注入的方法")
    18. }
    19. }
    20. }
    21. // 后代组件
    22. export default{
    23. inject:["name","someMethod"],
    24. mounted(){
    25. console.log(this.name)
    26. this.someMethod()
    27. }
    28. }

    9. EventBus

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

    定义方式有三种

    1. // 方法一
    2. // 抽离成一个单独的 js 文件 Bus.js ,然后在需要的地方引入
    3. // Bus.js
    4. import Vue from "vue"
    5. export default new Vue()
    6. // 方法二 直接挂载到全局
    7. // main.js
    8. import Vue from "vue"
    9. Vue.prototype.$bus = new Vue()
    10. // 方法三 注入到 Vue 根对象上
    11. // main.js
    12. import Vue from "vue"
    13. new Vue({
    14. el:"#app",
    15. data:{
    16. Bus: new Vue()
    17. }
    18. })

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

    1. // 在需要向外部发送自定义事件的组件内
    2. <template>
    3. <button @click="handlerClick">按钮</button>
    4. </template>
    5. import Bus from "./Bus.js"
    6. export default{
    7. methods:{
    8. handlerClick(){
    9. // 自定义事件名 sendMsg
    10. Bus.$emit("sendMsg", "这是要向外部发送的数据")
    11. }
    12. }
    13. }
    14. // 在需要接收外部事件的组件内
    15. import Bus from "./Bus.js"
    16. export default{
    17. mounted(){
    18. // 监听事件的触发
    19. Bus.$on("sendMsg", data => {
    20. console.log("这是接收到的数据:", data)
    21. })
    22. },
    23. beforeDestroy(){
    24. // 取消监听
    25. Bus.$off("sendMsg")
    26. }
    27. }

    10. Vuex

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

    比如创建这样的文件结构

    index.js 里内容如下

    1. import Vue from 'vue'
    2. import Vuex from 'vuex'
    3. import getters from './getters'
    4. import actions from './actions'
    5. import mutations from './mutations'
    6. import state from './state'
    7. import user from './modules/user'
    8. Vue.use(Vuex)
    9. const store = new Vuex.Store({
    10. modules: {
    11. user
    12. },
    13. getters,
    14. actions,
    15. mutations,
    16. state
    17. })
    18. export default store

    然后在 main.js 引入

    1. import Vue from "vue"
    2. import store from "./store"
    3. new Vue({
    4. el:"#app",
    5. store,
    6. render: h => h(App)
    7. })

    然后在需要的使用组件里

    1. import { mapGetters, mapMutations } from "vuex"
    2. export default{
    3. computed:{
    4. // 方式一 然后通过 this.属性名就可以用了
    5. ...mapGetters(["引入getters.js里属性1","属性2"])
    6. // 方式二
    7. ...mapGetters("user", ["user模块里的属性1","属性2"])
    8. },
    9. methods:{
    10. // 方式一 然后通过 this.属性名就可以用了
    11. ...mapMutations(["引入mutations.js里的方法1","方法2"])
    12. // 方式二
    13. ...mapMutations("user",["引入user模块里的方法1","方法2"])
    14. }
    15. }
    16. // 或者也可以这样获取
    17. this.$store.state.xxx
    18. this.$store.state.user.xxx

    11. $root

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

    12. slot

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

    1. // Child.vue
    2. <template>
    3. <div>
    4. <slot :user="user"></slot>
    5. </div>
    6. </template>
    7. export default{
    8. data(){
    9. return {
    10. user:{ name:"沐华" }
    11. }
    12. }
    13. }
    14. // Parent.vue
    15. <template>
    16. <div>
    17. <child v-slot="slotProps">
    18. {{ slotProps.user.name }}
    19. </child>
    20. </div>
    21. </template>
  • 相关阅读:
    揭秘计算机的神经系统:探索计算机的基本组成
    自动化测试框架-----unittest篇
    使用Filter AND Interceptor校验等录(全网独一份,机不可失)
    【视频课】AI必学,超20小时,4大模块,循序渐进地搞懂经典模型设计与简单部署!...
    Vue3中的几个坑,你都见过吗?
    【Java】String、StringBuilder、StringBuffer的介绍和区分
    【数据结构】树形结构——树的定义和术语
    英语新概念2-回译法-lesson10
    绿肥红瘦专栏数据的爬取
    怒刷LeetCode的第15天(Java版)
  • 原文地址:https://blog.csdn.net/qq_43592064/article/details/134509416