mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-16 17:33:45 +00:00
Better event.
This commit is contained in:
@@ -45,7 +45,7 @@
|
|||||||
v-on:set-custom-date="storeField($event)"
|
v-on:set-custom-date="storeField($event)"
|
||||||
v-on:set-budget="storeField($event)"
|
v-on:set-budget="storeField($event)"
|
||||||
v-on:set-category="storeField($event)"
|
v-on:set-category="storeField($event)"
|
||||||
v-on:set-bill="storeBill(index, $event)"
|
v-on:set-bill="storeField($event)"
|
||||||
v-on:set-tags="storeTags(index, $event)"
|
v-on:set-tags="storeTags(index, $event)"
|
||||||
v-on:set-piggy-bank="storePiggyBank(index, $event)"
|
v-on:set-piggy-bank="storePiggyBank(index, $event)"
|
||||||
v-on:set-internal-reference="storeInternalReference(index, $event)"
|
v-on:set-internal-reference="storeInternalReference(index, $event)"
|
||||||
|
@@ -89,7 +89,7 @@ export default {
|
|||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
bill: function (value) {
|
bill: function (value) {
|
||||||
this.$emit('set-bill', value);
|
this.$emit('set-bill', {field: 'bill_id', index: this.index, value: value});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user