文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Vue常用的组件通信方式有哪些

2023-06-14 18:28

关注

本篇文章和大家了解一下Vue常用的组件通信方式有哪些。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

组建通信的基本模式:父子组件的关系可以总结为 prop 向下传递,事件向上传递。父组件通过 prop 给子组件下发数据,子组件通过事件给父组件发送消息

Vue常用的组件通信方式有哪些
组件通信的常用三种方式

1.props(父组件向子组件传值)

parent.vue

 <template>  <p>    <parent-child :childName="childName"></parent-child>  </p></template><script>  import child from "./child"  export default {    components: {      "parent-child" : child    },data(){      return {        childName : "我是child哦"      }    }  }</script>

child.vue

<template>  <p id="child">    child的名字叫:{{childName}}<br>  </p></template><script>  export default {    props:{      childName :{        type:String,        default: ""      }    }  }</script>

2.$emit(子组件向父组件传值–局部消息订阅)

parent.vue

<template>  <p>    <parent-child :childName="childName" @childNotify="childReceive"></parent-child>  </p></template><script>  import child from "./child"  export default {    components: {      "parent-child" : child    },data(){      return {        childName : "我是child哦"      }    },methods:{      childReceive(params){        this.$message(params)      }    }  }</script>

child.vue

<template>  <p id="child">    child的名字叫:{{childName}}<br>  </p></template><script>  export default {    props:{      childName :{        type:String,        default: ""      }    },methods:{      childNotify(params){        this.$emit("childNotify","child的名字叫"+this.childName);      }    }  }</script>

3.bus全局消息订阅

bus.js

const install = (Vue) => {  const Bus = new Vue({    methods: {      on (event, ...args) {        this.$on(event, ...args);      },      emit (event, callback) {        this.$emit(event, callback);      },      off (event, callback) {        this.$off(event, callback);      }    }  })  Vue.prototype.$bus = Bus;}export default install;

main.js

import Bus from "./assets/js/bus";Vue.use(Bus);

child.vue

<template>  <p id="child">    child的名字叫:{{childName}}<br>    <el-button type="primary" @click="brotherNotity">向child2打招呼</el-button>  </p></template><script>  export default {    props:{      childName :{        type:String,        default: ""      }    },methods:{      childNotify(params){        this.$emit("childNotify","child的名字叫"+this.childName);      },      brotherNotity(){        this.$bus.$emit("child2","child2你好呀");      }    }  }</script>

child2.vue

<template>  <p id="child2">    child2的名字叫:{{child2Name}}  </p></template><script>  export default {    props:{      child2Name :{        type:String,        default: ""      }    },    created(){      this.$bus.$on("child2",function(params){        this.$message(params)      })    },    beforeDestroy() {      this.$bus.$off("child2",function(){        this.$message("child2-bus销毁")      })    }  }</script>

vue是什么

Vue是一套用于构建用户界面的渐进式JavaScript框架,Vue与其它大型框架的区别是,使用Vue可以自底向上逐层应用,其核心库只关注视图层,方便与第三方库和项目整合,且使用Vue可以采用单文件组件和Vue生态系统支持的库开发复杂的单页应用。

以上就是Vue常用的组件通信方式有哪些的简略介绍,当然详细使用上面的不同还得要大家自己使用过才领会。如果想了解更多,欢迎关注编程网行业资讯频道哦!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯