美文网首页
组件之间的传值之非父子(同级之间的传值用第三方量)

组件之间的传值之非父子(同级之间的传值用第三方量)

作者: 天赐很棒 | 来源:发表于2018-09-21 15:08 被阅读0次

同级之间的传值1:
body部分:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div id="app">
<child></child>
<son></son>
</div>
js部分:
<script src="js/vue.js"></script>
<script>
var bus=new Vue()
Vue.component('child',{
template:<h1>这是child</h1> <button @click='sendMsg'>点击按钮传值</button>,
data:function(){
return{
msg:'这是非父子传值'
}
},
methods:{
sendMsg:function(){
bus.emit('send',this.msg) } } }) Vue.component('son',{ template:` <h1>这是son</h1> `, data:function(){ return{ mess:'' } }, mounted:function(){ bus.on('send',msg=>{
console.log(this);
this.mess=msg;
})
}
})

    new Vue({
        el:'#app'
    })
</script>

</body>
</html>

8.png
父子组件之间的传值案例:
body部分:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>父子组件传值</title>
</head>
<body>
<div id="app">
<chat-room></chat-room>
</div>
js部分:
<script src="js/vue.js"></script>
<script>
Vue.component('chat-room',{
template:<div> <ul> <li v-for="(value,index) in chatcont">{{value}}</li> </ul> <user @send='rcvMsg' userName='lhf'></user> <user @send='rcvMsg' userName='lbx'></user> </div>,
data:function(){
return{
chatcont:[]
}
},
methods:{
rcvMsg:function(txt){
                this.chatcont.push(txt)
            }
        }
    })
    
    Vue.component('user',{
        props:['userName'],
        template:`
            <div>
                <label>{{userName}}</label>
                <input type='text' v-model='msg'>
                <button @click='sendMsg'>点击发送</button>
            </div>
        `,
        data:function(){
            return{
                msg:''
            }
        },
        methods:{
            sendMsg:function(){
                this.$emit('send',this.userName+":"+this.msg)
            }
        }
    })
    new Vue({
        el:'#app'
    })
</script>

</body>
</html>


9.png

相关文章

  • 同级传值

    1、什么是同级传值? 同级传值又叫非父子传值,第三方量:var = new Vue();使用$on()事件监听。 ...

  • 组件通信

    vue传值可分为父子之间传值、兄弟组件之间传值、跨代组件之间传值 1.父子之间传值:可以使用$emit/props...

  • 组件之间的传值

    组件之间的传值,包括父子组件传值,兄弟组件之间的传值,其中父子组件包括父组件向子组件传值和子组件向父组件传值,现在...

  • 2018-09-22 vue初学8.1(非父子间的传值)

    非父子间的传值也可以理解为同级之间的传值 在非父子传值中主要声明了一个:var 变量 = new Vue(); ...

  • 与Vue.js的第八天

    今天学习了Vue组件中的非父子之间的传值和生命周期Vue组件之间的传值分三种1.父传子之间传值用属性:props2...

  • Vue中的组件(全)

    Vue常用的三种传值方式有:父传子 用属性传子传父 用事件传非父子传值 第三方量组件(compon...

  • vue 6种通信总结①

    常用vue通信大概有这几种方式进行: 组件间的父子之间的传值 组件间的子父之间的传值 非组件间的组件间的传值(简称...

  • 组件之间的传值之非父子(同级之间的传值用第三方量)

    同级之间的传值1:body部分: Document

  • 2018-09-25组件

    组件分为:子传父父传子非父子之间的通信 1.子传父 2.父传子 3.非父子之间传值

  • Vue中的组件

    Vue常用的三种传值方式有:父传子 用属性传子传父 用事件传非父子传值 第三方量组件(component):是Vu...

网友评论

      本文标题:组件之间的传值之非父子(同级之间的传值用第三方量)

      本文链接:https://www.haomeiwen.com/subject/rananftx.html