@com.vaadin.flow.router.Route(com.vaadin.flow.uitest.ui.WebComponentsView)

Here are the examples of the java api @com.vaadin.flow.router.Route(com.vaadin.flow.uitest.ui.WebComponentsView) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : WebComponentsView.java
with MIT License
from mcollovati

/**
 * @author Vaadin Ltd
 * @since 1.0
 */
@Route("com.vaadin.flow.uitest.ui.WebComponentsView")
public clreplaced WebComponentsView extends AbstractDivView {

    public WebComponentsView() {
        Element div = ElementFactory.createDiv("Web components v1");
        getElement().appendChild(div);
    }
}