0๐
You are mixing absolute and relative URLs.
change from:
var url ='make/create';
to:
var url ='/make/create';
0๐
just pass route name instead passing url :
var url ='make/create';
become:
var url ='{{route("create.store")}}';
0๐
I already found the problem was an error of mine I did not know how to use axios the code I leave it for future reference is 100% functional thanks to the people who helped me.
- [Vuejs]-Import errors for ThreeJS in vue-test-utils with Jest
- [Vuejs]-Unshifting vs pushing on a v-for array
Source:stackexchange.com