mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-11 15:07:08 +00:00
fix: disappearing manual props
This commit is contained in:
parent
19e6e43358
commit
76581e7400
3 changed files with 20 additions and 1 deletions
|
@ -61,7 +61,7 @@ impl Buffer {
|
|||
}
|
||||
|
||||
// If there's nothing at all, empty optimization
|
||||
if fields.is_empty() && children.is_empty() {
|
||||
if fields.is_empty() && children.is_empty() && manual_props.is_none() {
|
||||
opt_level = ShortOptimization::Empty;
|
||||
}
|
||||
|
||||
|
|
|
@ -31,4 +31,7 @@ rsx! {
|
|||
|
||||
// One level compression
|
||||
div { a { class: "py-2 px-3 bg-indigo-500 hover:bg-indigo-600 rounded text-xs text-white", href: "#", "Send invitation" } }
|
||||
|
||||
// Components
|
||||
Component { ..Props {} }
|
||||
}
|
||||
|
|
|
@ -12,3 +12,19 @@ macro_rules! twoway {
|
|||
}
|
||||
|
||||
twoway!("comments" => comments);
|
||||
|
||||
// rsx! {
|
||||
// div { class: "asdasd", "hello world" }
|
||||
// h1 {
|
||||
// // Important handler
|
||||
// onclick: move |_| {
|
||||
// let a = 10;
|
||||
// },
|
||||
|
||||
// div { "hello" }
|
||||
|
||||
// // Important handler
|
||||
// "Goodbye world"
|
||||
// }
|
||||
// Component {}
|
||||
// }
|
||||
|
|
Loading…
Reference in a new issue