New default layout without vuejs rendering (still needs some fixes)

This commit is contained in:
2025-10-19 23:35:11 +02:00
parent df9ae95890
commit feb2fb56c6
8 changed files with 73 additions and 99 deletions

View File

@@ -26,12 +26,12 @@ onMounted(() => {
if(container.value && id)
{
const character = new CharacterSheet(id, user);
container.value.appendChild(character.container);
container.value.replaceWith(character.container);
}
});
});
</script>
<template>
<div ref="container"></div>
<div class="flex h-full" ref="container"></div>
</template>