Advertisement
Guest User

Untitled

a guest
May 25th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let that = this
  2.         let array = this.$store.state.shops.productCarts.productCartItems.data
  3.         let result = array.filter(function (productCartItem) {
  4.           if (productCartItem.id === that.id) {
  5.             console.log('test' + array.indexOf(productCartItem))
  6.             return array.indexOf(productCartItem)
  7.           }
  8.         })
  9.         array.splice(result, 1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement