vue——DOMException: Failed to execute 'open' on 'XMLHttpRequest': Invalid URL 未能在“xmlhttpRequest”上执行“open”:无效的URL
问题: axios的baseURL 里未加http
原: axios.defaults.baseURL = '192.xxx.10.10:8080';
解决:加上http即可
改后:axios.defaults.baseURL = 'http://192.xxx.10.10:8080';