I'm having an issue with my integration, when I use wire:navigate I simulate an spa, I reset all components and layout, like this:
document.addEventListener('livewire:navigate', (event) => {
KTComponents.init();
KTLayout.init();
});
But nothing works
Hi Jesus
Sorry for the delay. Could you please try this?
document.addEventListener("livewire:navigated", function() {
KTComponents.init();
});
still not working