我正在尝试在我的页面上显示一个 Vaadin 组件,即一个带有 Vaadin 10 的网格。
它存在于 DOM 中,但在页面上不可见。
我的课是:
@Route("")
@Log
public class ProfileList extends VerticalLayout {
public ProfileList(PersonRepository repo) {
Grid<Profile> grid = new Grid<>();
grid.addColumn(Person::getName).setHeader("Name");
grid.setItems(profilerepo.findAll());
add(grid);
}
}