1👍
Try changing the success function to an arrow function, so from:
success : function(result){ ... }
to:
success : result => { ... }
The reason for this is that a non-arrow function changes “this”
👤CvP
- [Vuejs]-Vuetify TreeView Data Manipulation
- [Vuejs]-I have problems when trying to route to a new page
Source:stackexchange.com