您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
本篇文章为大家展示了使用vue怎么在子组件中调用兄弟组件,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。
父组件示例代码:
组件功能解析:
通过$emit获取子组件事件,通过$ref调用子组件中事件,实现子组件二的click事件
调用兄弟组件一中的事件
<template> <div> <!-- 子组件1 --> <son1 ref="borther" :dataFromFather="dataFromFather"></son1> <!-- 子组件2 --> <son2 @triggerBrotherMethods="triggerBrotherMethods" :dataFromFather="dataFromFather"></son2> </div> </template> <script> // 引入子组件一 import son1 from './son1' // 引入子组件二 import son2 from './son2' export default { data() { return { dataFromFather: [] } }, // 注册子组件 components: { son1, son2 }, methods: { // 子组件2中click事件 triggerBrotherMethods() { // 父组件通过$ref调用子组件1中的事件方法 this.$refs.borther[0].bortherMethods() }, } } </script> <style lang="less" scoped> /* .... */ </style>
子组件一
组件功能解析:
加载父组件数据,进行业务操作
<template> <!-- 子组件son2 --> <div @click="bortherMethods"> <!-- 父组件传值展示 --> {{dataFromFather}} </div> </template> <script> export default { data() { return { } }, props: ['dataFromFather'], methods: { // 兄弟组件中的按钮事件 bortherMethods() { // 子组件事件方法 ... }, } } </script> <style lang="less" scoped> /* .... */ </style>
子组件二:
组件功能解析:
加载父组件数据,通过click事件emit传给父组件
<template> <!-- 子组件son2 --> <div @click="triggerBrotherMethods"> <!-- 父组件传值展示 --> {{dataFromFather}} </div> </template> <script> export default { data() { return { } }, props: ['dataFromFather'], methods: { // 触发兄弟组件中的按钮事件 triggerBrotherMethods() { this.$emit('clickBrotherBtn', true) }, } } </script> <style lang="less" scoped> /* .... */ </style>
上述内容就是使用vue怎么在子组件中调用兄弟组件,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。