mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
15 lines
345 B
TypeScript
15 lines
345 B
TypeScript
import { CustomNavbarItemInit } from '../custom-navbar-item'
|
|
|
|
export const manga: CustomNavbarItemInit = {
|
|
name: 'manga',
|
|
displayName: '漫画',
|
|
content: '漫画',
|
|
|
|
touch: true,
|
|
href: 'https://manga.bilibili.com/',
|
|
|
|
boundingWidth: 500,
|
|
noPopupPadding: true,
|
|
popupContent: () => import('./MangaPopup.vue').then(m => m.default),
|
|
}
|