load
event, in SPA versions content is rendered differently and to use our js components you need to move initialization from load
event to onMounted
function.onMounted
as shown below.onMounted(() => {
nextTick(() => {
KTComponents.init();
});
});