I tried this:
methods: {
async deleteCard(mediaRef) {
// mediaRef is equal to reference of the images folder
await this.$fire.storage.ref('albums_cards').child(mediaRef).delete()
},
},
error:
Firebase Storage: Object 'albums_cards/88b8f000-6dd0-11ed-9c2d-afa013ab0c4b' does not exist. (storage/object-not-found)
but as you see in the picture it exists. I think the method which I used is to delete specific file, but I want to delete folder.
Is there any way to do it?