This is unreleased documentation for Yew Next version.
For up-to-date documentation, see the latest version on docs.rs.

Function yew_router::hooks::use_location

source ·
pub fn use_location<'hook>() -> impl 'hook + Hook<Output = Option<Location>>
Expand description

A hook to access the current Location.

§Note

When used in function components and hooks, this hook is equivalent to:

pub fn use_location() -> Option<Location> {
    /* implementation omitted */
}