Vaadin CssLayout 的正确依赖配置是什么

What is the proper dependency configuration for Vaadin CssLayout

<dependency>
    <groupId>com.vaadin</groupId>
    <artifactId>vaadin-spring-boot-starter</artifactId>
</dependency>

SpringBoot 2 Vaadin 12.0.3

水平和垂直布局对我来说效果很好。我想尝试 CssLayout 但没有在 class 路径中看到它。显示 CssLayout 工作的示例,从 com.vaadin.ui.CssLayout 导入。我没有看到那个包裹。

是依赖配置不对,还是最新的Vaadin有改动?

Vaadin 10+ 中的布局组件已从 Vaadin 8 更改。有 Vertical/HorizontalLayouts,但它们的行为略有不同,因为现在的实现基于 CSS FlexBox。还有 API 的变化。 CssLayout 不存在了,取而代之的是 class Div,它取代了它。