mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
11 lines
563 B
HTML
11 lines
563 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}" v-on:pointerover="requestPopup(component)">
|
|
<a class="main-content" v-bind:href="component.href" v-html="component.html"></a>
|
|
<div class="popup" v-if="component.popupHtml" v-bind:class="{'no-padding': component.noPadding}">
|
|
<div v-if="component.requestedPopup" v-html="component.popupHtml"></div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div> |