Why can't I delete data with Vuejs

39 Views Asked by At

Although it says status:ok in the console, the data in the firebase data is not deleted, where am I doing wrong?

`

deleteUser(userKey){
      this.$resource("users" + userKey + ".json").delete()
      .then(response => {
        console.log(response)
      })
     }

`

Console ss

Firebase ss

0

There are 0 best solutions below