fix: retain resolved component paths

This commit is contained in:
root
2026-07-13 21:26:01 +00:00
parent 92baaa6299
commit 8da6cad305
5 changed files with 29 additions and 1 deletions
+4
View File
@@ -0,0 +1,4 @@
COMPONENT(Request& context)
{
<><span>lazy-child</span></>
}
+5
View File
@@ -0,0 +1,5 @@
COMPONENT(Request& context)
{
if(context.props["show_child"].to_bool())
print(component("lazy-child", context.props, context));
}