Vue.component('grandpa', {
template: '
',
methods: {
handleUpdate() {
console.log("grandpa update")
}
},
components: {
'parent': {
template: `
parent
`,
methods:{
handleUpdate() {
console.log("parent update")
}
},
components: {
'child': {
template: `
child
`
}
}
}
}
});
new Vue({
el: "#root"
});