1
There is issue where you are setting path. You have to use ` instead of ‘ when you add data property in string. So, path will be like:
const path = `http://127.0.0.1:8000/api/v1.0/productos/${this.id_product}/`
Source:stackexchange.com
1
There is issue where you are setting path. You have to use ` instead of ‘ when you add data property in string. So, path will be like:
const path = `http://127.0.0.1:8000/api/v1.0/productos/${this.id_product}/`