родитель-потомок или родителем выступает new Vue а каждый компонент по умолчанию потомок?
Vue.component('button-counter', {
template: '<button v-on:click="incrementCounter">{{ counter }}</button>',
data: function () {
return {
counter: 0
}
},
methods: {
incrementCounter: function () {
this.counter += 1
this.$emit('increment')
}
},
})
new Vue({
el: '#counter-event-example',
data: {
total: 0
},
methods: {
incrementTotal: function () {
this.total += 1
}
}
})
в данной ситуации new Vue() это родитель, а Vue.component() глобально определеяет компонент
Обсуждают сегодня