fix(hot-reload): handle DOM-less views

This commit is contained in:
Nesterov Nikita
2025-07-15 09:28:59 +03:00
parent f8fd79725a
commit afb37aaf4b

View File

@@ -217,7 +217,7 @@ where
extra_attrs,
);
if !T::EXISTS {
buf.push_str("<!>");
buf.push_str("<!--<() />-->");
}
}
@@ -238,7 +238,7 @@ where
extra_attrs,
);
if !T::EXISTS {
buf.push_sync("<!>");
buf.push_sync("<!--<() />-->");
}
}
@@ -259,7 +259,7 @@ where
extra_attrs,
);
if !T::EXISTS {
buf.push_sync("<!>");
buf.push_sync("<!--<() />-->");
}
}