这是我的代码
<div class="dropdown" id="dropdown">
<a href="{{data.path}}">
<button id="myButton" class="dropbtn">{{data.name}}</button>
</a>
<paper-listbox id="menuListBox" class="dropdown-content" slot="dropdown-
content" selected="1">
<template is="dom-repeat" items="{{data.submenu}}">
<paper-item id="subMenu">
<template is="dom-if" if="{{_isSubMenu(item.submenu.length)}}">
<geo-dropdownmenu class="submenu" data={{item}} animation-
direction="right" menu="submenu"></geo-dropdownmenu>
</template>
<template is="dom-if" if="{{!_isSubMenu(item.submenu.length)}}">
<a href="{{item.path}}" id="paperItemType"> {{item.name}} </a>
</template>
</paper-item>
<hr>
</template>
</paper-listbox>
</div>
这里正在使用纸质列表框和纸质项目创建一个下拉菜单, 我正在使用 dom-repeat 作为纸质项目,并使用 dom-if 检查纸质项目是否为子菜单(_isSubMenu()是检查是否为我是使用
答案 0 :(得分:0)