Bilibili-Evolved/style/custom-navbar/custom-navbar.html
2019-04-06 17:04:28 +08:00

10 lines
409 B
HTML

<div class="custom-navbar">
<ul>
<li v-for="component of components" v-bind:class="{disabled: component.disabled}"
v-bind:style="{flex: component.flex}">
<a class="main-content" v-bind:href="component.href" v-html="component.html"></a>
<div class="popup" v-if="component.popupHtml" v-html="component.popupHtml">
</div>
</li>
</ul>
</div>