You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm following a basic tutorial on Brad Traversy's youtube channel using vuex, but where I call an axios request to the todos db with a limit parameter I get this error message:
It could be because I'm new to coding, but from what I've gathered a similar issue was brought up earlier this month, so I thought I'd put this forward.
The text was updated successfully, but these errors were encountered:
Hi, I'm following a basic tutorial on Brad Traversy's youtube channel using vuex, but where I call an axios request to the todos db with a limit parameter I get this error message:
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://jsonplaceholder/typicode.com/todos?_limit=20. (Reason: CORS request did not succeed).
The axios call in particular is here:
`` async filterTodos({ commit }, e) {
const limit = parseInt(e.target.options[e.target.options.selectedIndex].innerText);
It could be because I'm new to coding, but from what I've gathered a similar issue was brought up earlier this month, so I thought I'd put this forward.
The text was updated successfully, but these errors were encountered: