I've tried defining a layout that uses quasar components like a toolbar, but the Quasar components are not rendering properly in the page. Using normal HTML works fine
Here's a MWE
using GenieFramework
@app begin
@in txt = "Hello, World!"
end
ui() = [
p("--------------"),
p("body content:"),
card(:txt),
card("hello world"),
checkbox("check me"),
btn("aaa", icon="menu")
]
@page("/", ui, layout="layout.jl")
I've tried defining a layout that uses quasar components like a toolbar, but the Quasar components are not rendering properly in the page. Using normal HTML works fine
Here's a MWE
layout.jl:
Result: the quasar components from the layout appear in the page code but are not rendered