This website works better with JavaScript
Etusivu
Tutki
Apua
Kirjaudu sisään
lenn
/
dioxus-mirror
peilaus alkaen
https://github.com/DioxusLabs/dioxus.git
Tarkkaile
1
Äänestä
0
Fork
0
Tiedostot
Ongelmat
0
Wiki
Selaa lähdekoodia
wrap the result of render_with_location in an option
Evan Almloff
1 vuosi sitten
vanhempi
913ed0cfe3
commit
af75fb855f
1 muutettua tiedostoa
jossa
3 lisäystä
ja
1 poistoa
Jaettu näkymä
Näytä diff tilastot
3
1
packages/rsx/src/lib.rs
+ 3
- 1
packages/rsx/src/lib.rs
Näytä tiedosto
@@ -85,7 +85,9 @@ impl CallBody {
};
quote! {
- #body
+ Some({
+ #body
+ })
}
}
}