We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.router.
Interface RouterLayout
-
All Superinterfaces:
All Known Implementing Classes:
public interface RouterLayout extends HasElement
Implementations of this interface represent a parent for a navigation target components via the
Route.layout()
parameter.Since:
1.0
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method and Description default void
showRouterLayoutContent(HasElement content)
Shows the content of the layout which is the router target component annotated with a
@Route
.-
Methods inherited from interface com.vaadin.flow.component.HasElement
getElement
-
-
-
-
Method Detail
-
showRouterLayoutContent
default void showRouterLayoutContent(HasElement content)
Shows the content of the layout which is the router target component annotated with a
@Route
.Note implementors should not care about old
@Route
content, becauseRouter
automatically removes it before calling the method.Parameters:
content
- the content component ornull
if the layout content is to be cleared.
-
-