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
I don't think this is possible at the moment. We did something similar in the workshop to include multiple pages, but you need to pass the entire module:
About mixins
The
@mixin
macro is used to extend theReactiveModel
behind a page with fields from another struct, as you've already done.It's like what Mixers.jl does, but with some improvements for Stipple as introduced in this issue.
One caveat is that
@mixins
only works with named models, those created with@app ModelName begin ...
. We've open an issue on this.Are @in and @out conventions?
@in
variables can be read and written from the UI, whereas@out
can only be read. Here's an example:The
textout
handler is never triggered astextout
is not writeable.Can we use @page with an existing model?
I don't think this is possible at the moment. We did something similar in the workshop to include multiple pages, but you need to pass the entire module:
This would be an useful improvement to the API in order to make working with multiple
ReactiveModel
in a page easier.Is there a way to make a loading screen?
isprocessing
is not workingYou can use the
q-inner-loading
component. There's also aloading
option for buttons.The text was updated successfully, but these errors were encountered: