mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
15 lines
788 B
HTML
15 lines
788 B
HTML
<div class="custom-navbar">
|
|
<ul>
|
|
<li v-for="component of components" v-bind:data-name="component.name"
|
|
v-bind:class="{disabled: component.disabled}" v-bind:style="{flex: component.flex}"
|
|
v-on:pointerover="requestPopup(component)">
|
|
<a class="main-content" v-if="component.href" v-bind:href="!component.touch && component.href"
|
|
v-html="component.html"></a>
|
|
<div class="main-content" v-else v-html="component.html"></div>
|
|
<div class="notify-count"></div>
|
|
<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> |