This website works better with JavaScript
Trang chủ
Khám phá
Trợ giúp
Đăng nhập
lenn
/
dioxus-mirror
mirror of
https://github.com/DioxusLabs/dioxus.git
Xem
1
Star
0
Fork
0
Các tập tin
Các vấn đề
0
Wiki
Browse Source
wrap the result of render_with_location in an option
Evan Almloff
1 năm trước cách đây
mục cha
913ed0cfe3
commit
af75fb855f
1 tập tin đã thay đổi
với
3 bổ sung
và
1 xóa
Split View
Hiển thị tình trạng sai khác
3
1
packages/rsx/src/lib.rs
+ 3
- 1
packages/rsx/src/lib.rs
Xem Tập Tin
@@ -85,7 +85,9 @@ impl CallBody {
};
quote! {
- #body
+ Some({
+ #body
+ })
}
}
}