mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 09:39:23 +00:00
15 lines
363 B
JavaScript
15 lines
363 B
JavaScript
|
|
export default {
|
||
|
|
methods: {
|
||
|
|
makeGenericPurchase (item) {
|
||
|
|
this.$store.dispatch('shops:genericPurchase', {
|
||
|
|
pinType: item.pinType,
|
||
|
|
type: item.purchaseType,
|
||
|
|
key: item.key,
|
||
|
|
currency: item.currency,
|
||
|
|
});
|
||
|
|
this.$root.$emit('buyModal::boughtItem', item);
|
||
|
|
this.$root.$emit('playSound', 'Reward');
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|