import STORE from '@/store'
STORE.registerModule({
key: 'bag',
data: {}
})
this.stateObserverId = STORE.observe({
key: 'bag',
handler: this.updateUI
})
STORE.unObserve(this.stateObserverId)
STORE.commit({
key: 'bag',
data: {
item_count,
total_price,
items,
currency,
openPopup: open
}
})