Global interceptor + token, is added to vue-axios, but some interfaces do not need to log in with token, when they are requested. How to do this
axios.interceptors.request.use (function (config) {
            config.headers["ApiAuth"] = sessionStorage.getItem("apiAuth");
            return config;
        });