Vue.component('indexmain',{ template:'', data:function(){ return { msg:'indexmain' } }, methods:{ sendMsg:function(){ //自定义触发事件,this.$emit('自定事件名称','事件的内容') this.$emit('send',this.msg) } }}) Vue.component('indexfooter',{ template:`这是个按钮,可以改变父组件内容
`, data:function(){ return { msg:'indexfooter' } }, methods:{ changeMsg:function(){ this.msg = '更改内容' } }})这是{ {msg}}
{ {childContent}}