我已经为这个聚合物元素编写了一个 vaadin 流包装器:
@Tag("simple-dropdown")
@HtmlImport("bower_components/simple-dropdown/simple-dropdown.html")
public class DropdownMenu extends Component implements HasComponents, HasSize, HasStyle {
...
}
这行得通。的文档simple-dropdown
告诉我我可以用这个 css 来设置 shadow dom 的样式:
simple-dropdown {
--simple-dropdown-toggle: {
justify-content: right;
}
}
但是,我无法在 Vaadin 流程中找到适合该 css 的位置。我必须把它放在哪里?