mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
14 lines
322 B
TypeScript
14 lines
322 B
TypeScript
import type { CustomNavbarItemInit } from '../custom-navbar-item'
|
|
|
|
export const home: CustomNavbarItemInit = {
|
|
name: 'home',
|
|
displayName: '主站',
|
|
content: '主站',
|
|
|
|
href: 'https://www.bilibili.com/',
|
|
touch: true,
|
|
|
|
boundingWidth: 366,
|
|
popupContent: () => import('./NavbarHome.vue').then(m => m.default),
|
|
}
|