запускаю метод
start_time(){
this.getСhartVal()
},
end_time(){
this.getСhartVal()
}
там он получает this.datas где готовый массив уже нужными данными
getСhartVal(){
if (this.count > 1){
axios
.get(document.location.href, {
params: {
start_time: this.start_time,
end_time: this.end_time
}
})
.then(response => {
this.days = response.data.days,
this.datas = response.data.datas
})
.catch(function (error) {
console.log(error),
alert("Возникла ошибка!");
});
}else {
this.count ++
}
а если в ссылке менять так же происходит пока не поменять селект
Обсуждают сегодня