Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. addIngredient($event) {
  2. const payload = {
  3. ...this.recipe_ingredient,
  4. quantity: +this.recipe_ingredient.quantity,
  5. recipe_id: this.recipe.id
  6. };
  7. this.$store.dispatch('recipes/insertRecipeIngredient', payload);
  8. this.recipe_ingredient = {
  9. ingredient_id: '',
  10. quantity: 0,
  11. comments: ''
  12. };
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement