mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
feat: add scroll to 0 for web router
This commit is contained in:
parent
5c20e651da
commit
7e45f2aa04
1 changed files with 5 additions and 0 deletions
|
@ -126,6 +126,11 @@ pub fn Link<'a>(cx: Scope<'a, LinkProps<'a>>) -> Element {
|
|||
if let Some(service) = svc {
|
||||
log::trace!("Pushing route to {}", to);
|
||||
service.push_route(to, cx.props.title.map(|f| f.to_string()), None);
|
||||
|
||||
#[cfg(feature = "web")]
|
||||
{
|
||||
web_sys::window().unwrap().scroll_to_with_x_and_y(0.0, 0.0);
|
||||
}
|
||||
} else {
|
||||
log::error!(
|
||||
"Attempted to create a Link to {} outside of a Router context", cx.props
|
||||
|
|
Loading…
Reference in a new issue