navigate
Programmatically navigate to a route with dynamic params and query objects.
import { navigate } from "@hellajs/router";
// Go to /aboutnavigate("/about");
// Go to /user/123?tab=profilenavigate( "/user", // Path { id: "123" }, // Params { tab: "profile"} // Query);
// Replace current history entrynavigate("/login", {}, {}, { replace: true });