How to debug? #136
Answered
by
jkelleyrtp
18601673727
asked this question in
Q&A
How to debug?
#136
-
Very new to WASM or dioxus, after read the docs a little bit, run input {
name: "test",
r#type: "text",
value: "",
oninput: move || {
println!("123"); // not printing anything
},
} Edit: forgot to mention that I'm running this on |
Beta Was this translation helpful? Give feedback.
Answered by
jkelleyrtp
Jan 19, 2022
Replies: 1 comment 3 replies
-
Check out
In wasm, you want to use the log crate instead of println. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
18601673727
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Check out
In wasm, you want to use the log crate instead of println.