diff --git a/src/layout/starter/SamplePage.vue b/src/layout/starter/SamplePage.vue index 1a6c615..0197d6b 100644 --- a/src/layout/starter/SamplePage.vue +++ b/src/layout/starter/SamplePage.vue @@ -168,7 +168,7 @@ export default { submit() { this.processing = true; axios - .get("http://localhost:8081/report/" + this.domain) + .get("http://localhost:8081/report/" + encodeURIComponent(this.domain)) .then(response => { let data = response.data; this.result = data;