Vue.component('child-comp1', { template: ` `, data(){ return { child_comp1: 'hello world!' } }, methods: { send(){ this.$emit('child_comp1_send', this.child_comp1); } }});
Vue.component('parent-comp1', { template: ``, data(){ return { parent_comp1: '' } }, methods: { get(data){ this.parent_comp1 = data; } }});{
{parent_comp1}}
new Vue({ el: '#app'})