欢迎使用CSDN-markdown编辑器

来源:互联网 发布:建设项目经济评价软件 编辑:程序博客网 时间:2024/06/05 03:06

vue父子组件间的数据传递
1.在父模块上自定义方法: v-on:children-tell-me-something=“tellme”
2.在methods中写出方法:tellme:function(msg){
this.childwords = msg;
}
3.在父模块上添加元素{{ childwords }}(前提是在父模块的data里面先赋值)

4.在子模块上的data里面写入msg,告诉父模块数据
5.在子模块的methods中的v-on:click事件里面写上this.$emit(‘children-tell-me-something’,this.msg),传出数据。