[Vuejs]-Vue delete current data values after @changed from select box

1👍

You have to clear your data everty time you recieved data from the server like this one.

 axios.get('/getGraph/' + self.teacher)
        then(({
                            data
        }) => {
        self.dataSource.data = []
        data.date.forEach(x => {
            self.dataSource.data.push(x);
        });
 }) 

Leave a comment