0👍
Solved by using:
axios.delete(`../api/cards/${id}`
instead of
fetch(`api/cards/${id}`, {
method: 'delete'
})
- [Vuejs]-I changed nothing to my code and now I have " TypeError: Cannot destructure property 'type' of 'vnode' as it is null. " when I launch my web app
- [Vuejs]-Vue js return wrong datetime from Laravel/MySQL DB
Source:stackexchange.com