Vue3 组件通信方式

简介: Vue3 组件通信方式

Vue3 组件通信方式

1. Props(父组件给子组件传递数据)

子组件

<template>
    <div style="height:100px;background-color: yellow">
          <div>{{text}}</div>
          <div>{{props.text}}</div>
    </div>
</template>
<script setup>
let props=defineProps(["text"])
    console.log(props)
</script>

子组件需要使用到defineProps方法去接受父组件传递过来的数据,defineProps是vue3提供方法,不需要引入直接使用,props为代理对象,在模板中使用可以{{props.属性名}}或者{{直接属性名}}进行使用。当然在<script>标签中获取属性名的值只能props.属性名。并且这里的props代理对象仅仅只是可读的,不可以修改。


父组件

<template>
    <div style="height:200px;background-color: red">
        <son :text="text"></son>
    </div>
</template>
<script setup>
import son from './Son.vue'
import {ref} from "vue"
let text=ref("hello")
</script>

2. 自定义事件 (子组件给父组件传递数据)


在vue框架中事件分为两种:一种是原生的DOM事件,另外一种自定义事件。

原生DOM事件可以让用户与网页进行交互,比如click、dbclick、change.mouseenter自定义事件,可以实现子组件给父组件传递数据。在vue3框架click、dbclick、change(这类原生DOM事件).不管是在标签、自定义标签上(组件标签)都是原生DOM事件。


子组件

<template>
    <div style="height:100px;background-color: yellow">
         <button @click="handle">点击触发</button>
    </div>
</template>
<script setup>
    //利用defineEmits方法返回函数触发自定义事件,defineEmits方法不需要引入直接使用
    let emit=defineEmits(['xxx'])
    const handle=()=>{
        // 第一个参数:事件类型第二个|三个|N参数即为注入数据
        emit('xxx','hello')
    }
</script>

父组件

<template>
    <div style="height:200px;background-color: red">
        <son @xxx="hander"></son>
    </div>
</template>
<script setup>
import son from './Son.vue'
import {ref} from "vue"
const hander=(param)=>{
    alert(param)
}
</script>

3. v-model

父组件

<template>
    <div style="height:200px;background-color: red">
        <son v-model:text="text"></son>
    </div>
</template>
<script setup lang="ts">
    import son from './Son.vue'
    import {ref} from "vue"
    let text=ref("hello")
</script>

子组件

<template>
    <div style="height:100px;background-color: yellow">
        <div>{{text}}</div>
      <el-button @click="handle">点击</el-button>
    </div>
</template>
<script setup lang="ts">
    let props=defineProps(["text"])
  let emit=defineEmits(["update:text"])
    const handle=()=>{
        emit("update:text","20")
    }
</script>

4. ref和$parent

父组件控制子组件

父组件

<template>
    <div style="height:100px;background-color: yellow">
        <div>{{money}}</div>
        <el-button @click="handle">父组件金钱加10,子组件金钱减10</el-button>
        <son ref="son1"></son>
    </div>
</template>
<script setup lang="ts">
    import son from "./Son.vue"
    import {ref} from "vue"
    let son1=ref()
    let money=ref(100)
    const handle=()=>{
       money.value+=10
        son1.value.money-=10
    }
</script>

子组件

<template>
    <div style="height:100px;background-color: yellow">
        <div>{{money}}</div>
    </div>
</template>
<script setup lang="ts">
    import {ref} from "vue"
    let money=ref(80)
    //组件内部数据对外关团的,别人不能访问
    //如果想让外部访问需要通过defineExpose方法对外暴露
    defineExpose({
        money
    })
</script>

子组件控制父组件

父组件

<template>
    <div style="height:100px;background-color: yellow">
        <div>{{money}}</div>
        <son></son>
    </div>
</template>
<script setup lang="ts">
    import son from "./Son.vue"
    import {ref} from "vue"
    let money=ref(100)
    //组件内部数据对外关团的,别人不能访问
    //如果想让外部访问需要通过defineExpose方法对外暴露
    defineExpose({
        money
    })
</script>

子组件

<template>
    <div style="height:100px;background-color: yellow">
        <div>{{money}}</div>
        <el-button @click="handle($parent)">父组件金钱加10,子组件金钱减10</el-button>
    </div>
</template>
<script setup lang="ts">
    import {ref} from "vue"
    let money=ref(80)
    const handle=(parent)=>{
        money.value-=10
        // 这里为代理对象
        parent.money+=10
    }
</script>

5. Provide和inject

父节点及以上节点和子孙节点的传值,注意传递获得的数据使用的是同一个对象,一个改变其余的都改变。

父组件

<template>
    <div style="height:100px;background-color: yellow">
        <son></son>
    </div>
</template>
<script setup lang="ts">
    import son from "./Son.vue"
    import {ref,provide,reactive} from "vue"
    let money=ref(100)
    provide("money",money)
</script

子组件

<template>
    <div style="height:100px;background-color: yellow">
            <div>{{money}}</div>
    </div>
</template>
<script setup lang="ts">
    import {ref,inject} from "vue"
    let money=inject("money")
</script>

6. 插槽

父组件

<template>
    <div style="height:100px;background-color: yellow">
        <son>
            <div>hello</div>
<!--                <template v-slot:text>-->
<!--                    <div>具名插槽内容</div>-->
<!--                </template>-->
            <template #text>
                <div>具名插槽内容</div>
            </template>
            <template #test="{row}">
                <div>{{row.title}}</div>
                <div>{{row.content}}</div>
            </template>
        </son>
    </div>
</template>
<script setup lang="ts">
    import son from "./Son.vue"
    import {ref,provide,reactive} from "vue"
</script>

子组件

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