Routes in main.js
{
name: 'match',
path: '/match/:id',
component: Match,
props: true
},
And in the main component (separate file) that fires the GET request:
axios({
method: "GET",
url: "/match/" + id,
crossdomain: true,
)}
Chrome tells me it's a 404. But when I open the provided link, it resolves and works?
