If i try set variable in vue2 when axios error i get this: Uncaught (in promise) TypeError: Cannot set properties of undefined (setting 'snackbar')
axios.post('/testaxios', {
}).then(response => {
console.log(response.data);
}).catch(function (error) {
console.error(error);
this.snackbar = true;
});
data() {
return {
snackbar: false,
}
}