I am trying to pass an integer parameter in a axios get request, but at the browser Value of key 'this.look_data.value' is not a string!..here what I did,
axios.get(window.App.targetURL+'/ccc/xxx?getint='+encodeURIComponent(this.look_data.value), window.App.configuration)
.then(response => {
this.value = (give.data);
this.values = true;
})
.catch(e => {
alert(e);
})