shoppingCartOneProductCell.js
431 Bytes
Component({
properties: {
data: {
type: null,
}
},
data: {
},
attached: function () {
},
methods: {
shoppingCartProductItemAction: function(event) {
this.triggerEvent('shoppingCartProductAction', event);
},
moveStart: function(event) {
this.triggerEvent('moveStart', event);
},
moveEnd: function(event) {
this.triggerEvent('moveEnd', event);
}
}
})