[Vuejs]-How to put return value into URL in java script

0👍

You could use template strings for this

this.promise = axios.get(
 `https://www.mustavi.com/TimeSeries/?param1=${this.breedKey}&param2=${this.thedata}`
);

Leave a comment