mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
15 lines
366 B
TypeScript
15 lines
366 B
TypeScript
import { defineAsyncComponent } from 'vue'
|
|
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: defineAsyncComponent(() => import('./NavbarHome.vue')),
|
|
}
|