For some reasons, i have to change the state of a page by a section-plugin. Unfortunately the state in the page-header stays(looks) the old-state, until i full reload the page.
Can the state-button in the k-header react to a state-change by a section-plugin, without full-reloading the page? or maybe somehow reload the page, without scrolling to it’s top?
methods: {
updateState(status) {
this.$api.patch(this.$view.path + '/status', { status: status })
.then(response => {
// Reload the Page after successfully change State
this.$go(this.$view.path);
})
.catch(error => {
console.log('error', error);
});
},