GenieFramework / Stipple.jl

The reactive UI library for interactive data applications with pure Julia.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

layout doesn't render quasar components

alerem18 opened this issue · comments

this works

layout([
  span("hi")
], model; title="layout")

but not this

layout([
  btn("hi")
], model; title="layout")

What are you expecting or what does not work?

btn() is a quasar component that is only rendered in the context of a quasar page. There is also button() that displays an unstyled button without further layout properties.

so we are not able to use quasar components on layout right?