我想在core-scaffold工具栏的末尾添加核心图标按钮(例如“+”图标),即
< div工具>
我该怎么做? “+”图标应显示在页面任意宽度的工具栏末尾。
感谢。
答案 0 :(得分:1)
core-scaffold
元素由3个content
区域组成:
navigation
:然后将您放置在具有属性navigation
或nav
的元素中的所有内容作为core-drawer-panel
的内容tool
:此处使用tool
属性,tool
元素的内容用作core-toolbar
<内core-header-panel
的内容/ LI>
所以回答你的问题:
<div tool>
<div>My Main Content Title in the Toolbar</div>
<core-icon-button icon="add" on-tap="{{addAction}}"></core-icon-button>
</div>
有关Polymer网站上Building single page apps using web components文章的更多信息,或深入了解code of the element