Ошибка Firebase: функция CollectionReference.do c () требует, чтобы ее первый аргумент имел тип непустой строки, но это было: true "
**my update function**
editproduct(product){
this.modal='edit'
this.product=product
this.activeitem=product.id
$("#product").modal('show')
},
upproduct(){
this.$firestore.products.doc(this.product.id).update(this.product)
$('#product').modal('hide')
},