vue3的兄弟传参(三种方法)

简介: vue3的兄弟传参(三种方法)

1.兄弟A先给父元素 父元素再给子组件B (vue2的思路)
A组件

<template> 
    <div style="width:300px;height:200px;background:blue"> 
        <button @click="add">A派发事件</button> 
    </div>
</template>
<script setup lang="ts">
import { defineEmits } from "vue" 
// emit
const emit=defineEmits(['onclick']);
let  flag=false;
const add=()=>{
    flag=!flag;
  emit('onclick',flag)
}
 
</script>

<style scoped>

</style>

父组件

<template>
  <div>
    <A  @onclick="onclick"></A>
    //在把A组件传输的值传给组件B
    <B :flag='flag'></B>
    A组件传输的值{{flag}}
  </div>
</template>

<script setup lang="ts">
import  {ref} from 'vue'
import  A from './components/fuzi/A.vue'
import  B from './components/fuzi/B.vue'
let  flag=ref(null);
const onclick=(params:boolean)=>{
//拿到传输的值赋给变量flag
flag.value=params;

}

</script>

<style scoped>

</style>

组件B

<template>
    <div style="width:300px;height:200px;background:red"> 
      B组件接受的值:  {{flag}}
    </div>
</template>

<script setup lang="ts">
import { defineProps} from "vue";
import  mitts  from '../../util/bus.js';
 
type Props={
    flag:boolean
}
defineProps<Props>();
</script>

<style scoped>

</style>

2.兄弟组件直接传输 (局部引入)

npm install mitt

定义一个bus.js

import  mitt  from 'mitt';
const  mitts=mitt();
export default mitts;

组件A:

<template> 
    <div style="width:300px;height:200px;background:blue">
        <button @click="child">兄弟传参</button>
    </div>
</template>
<script setup lang="ts">
import  mitts  from '../../util/bus.js'; 
let  flag=false;
const  child=()=>{
    mitts.emit('event',flag)
}
</script>

<style scoped>

</style>

组件B:

<template>
    <div style="width:300px;height:200px;background:red"> 
      B组件接受的值:  {{flag}}
    </div>
</template>

<script setup lang="ts">
import {onBeforeMount,ref} from "vue";
import  mitts  from '../../util/bus.js';
 let  flag=ref(null);
onBeforeMount(()=>{
  mitts.on('event',(e:boolean)=>{
      flag.value=e
  })
})
</script>

<style scoped>

</style>

3.兄弟传参(全局引入)

npm install mitt

main.ts

import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import mitt from 'mitt'
const  app=createApp(App);
app.config.globalProperties.$mitt=mitt();
app.mount('#app')

组件A

<template> 
    <div style="width:300px;height:200px;background:blue"> 
        <button @click="child">兄弟传参</button>
    </div>
</template>
<script setup lang="ts">
import {  getCurrentInstance,ComponentInternalInstance  } from "vue" 
const {appContext }=getCurrentInstance() as ComponentInternalInstance
let  flag=false;
 const  child=()=>{
    flag=!flag; 
    appContext.config.globalProperties.$mitt.emit('event',flag) 
}
</script>

<style scoped>

</style>

兄弟B

<template>
    <div style="width:300px;height:200px;background:red"> 
     {{flag}}
    </div>
</template>

<script setup lang="ts">
import { ref ,onBeforeMount,getCurrentInstance,ComponentInternalInstance} from "vue";
type Props={
    flag:boolean
} 
const flag<Props>=ref(null);
const {appContext}=getCurrentInstance() as ComponentInternalInstance 
onBeforeMount(()=>{
    appContext.config.globalProperties.$mitt.on('event',(e:boolean)=>{ 
      flag.value=e;

  })
 
</script>

<style scoped>

</style>
相关文章
|
19天前
|
存储 JavaScript 前端开发
vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
【10月更文挑战第21天】 vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
|
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 项目。
|
7天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
7天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
7天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。