You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Meta Attributes on Pages and Components should be extended in a way, that functions do not get evaluated until the end. Only after the body got rendered, the provided functions get evaluated - recieving the top level let bindings as input.
page BlogPost(
label: "Blog Post",
displayName: fun (title) -> "Blog - " ++ title,
) {
let title = #String(label: "Title");
}
The text was updated successfully, but these errors were encountered:
Meta Attributes on Pages and Components should be extended in a way, that functions do not get evaluated until the end. Only after the body got rendered, the provided functions get evaluated - recieving the top level let bindings as input.
The text was updated successfully, but these errors were encountered: