[Vuejs]-Rest API reqeust from jira using Vue Js and Query

0👍

It’s a serverside problem and not a vue-js/clientside problem:

the cross-origin error means that your vue-application runs at a different domain than your jira webserver (e.g. example.org and jira.com). In the jira-webserver you have to set “cross-origin: *”

Leave a comment