We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option<Script>
Script
<ScriptEffect/>
<ScriptEffect {script}/> is not meant to be used with None.
<ScriptEffect {script}/>
None
yew-interop/example/src/main.rs
Lines 21 to 27 in 25ccbc5
can be changed to:
html! { if let Some(script) = script { <ScriptEffect {script}/> <p>{"Now check your console!"}</p> }else{ <Progress id="blessings-progress" label="blessings.js is loading"/> }
The text was updated successfully, but these errors were encountered:
96373c7
No branches or pull requests
<ScriptEffect {script}/>
is not meant to be used withNone
.yew-interop/example/src/main.rs
Lines 21 to 27 in 25ccbc5
can be changed to:
The text was updated successfully, but these errors were encountered: