Using [email protected]+, and std:[email protected], have have this route set up
FlowRouter.route("/login", {
action() {
mount(LoginLayout, {
loginForm: <Accounts.ui.LoginForm />
});
}
});
And whenever the URI changes (say adding #foo), the route's action gets executed again, but the loginForm is not rendered anymore.
Using [email protected]+, and std:[email protected], have have this route set up
And whenever the URI changes (say adding
#foo), the route's action gets executed again, but theloginFormis not rendered anymore.