I want to reload my handsontable after a ajax call. Can you please help me out?
here is my code
let self = this;
axios.post(self.constants.api_url + ‘reset/progression_settings’,request, self.header)
.then(function (response) {
self.$refs.testHot.hotInstance.render();
})
},