this.$emit('openModal', item); //openModal - имя события, item - объект с данными
this.$root.on('openModal', (item) => {
this.modalData = item; // modalData - это свойство объекта дата, куда мы положим переданный объект, что бы после разложить все данные в шаблоне
});
import { mapGetters } from 'vuex'
export default {
name: 'CartInfoBox',
computed: {
...mapGetters([
'totalCount',
'totalPrice'
])
}
}
import { mapGetters } from 'vuex'
export default {
name: 'CartInfoBox',
computed: {
...mapGetters('cart', [
'totalCount',
'totalPrice'
])
}
}