From 5f34c79fca4634ea4fe4f34e7e61719c3c42a2e3 Mon Sep 17 00:00:00 2001 From: natxocc Date: Wed, 8 Apr 2026 01:58:07 +0200 Subject: [PATCH] comment remove --- sigwork_original.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sigwork_original.js b/sigwork_original.js index 909693f..237ead6 100644 --- a/sigwork_original.js +++ b/sigwork_original.js @@ -255,7 +255,7 @@ export const Router = (routes, trans = {}) => { export const mount = (root, target, props = {}) => { const container = typeof target === 'string' ? document.querySelector(target) : target; - container.replaceChildren(); // Limpieza rĂ¡pida moderna + container.replaceChildren(); const el = h(root, props); container.appendChild(el); if (el.$on) el.$on(el);