mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
15 lines
356 B
TypeScript
15 lines
356 B
TypeScript
import { CustomNavbarItemInit } from '../custom-navbar-item'
|
|
|
|
export const match: CustomNavbarItemInit = {
|
|
name: 'match',
|
|
displayName: '赛事',
|
|
content: '赛事',
|
|
|
|
touch: true,
|
|
href: 'https://www.bilibili.com/v/game/match/',
|
|
|
|
boundingWidth: 650,
|
|
noPopupPadding: true,
|
|
popupContent: () => import('./MatchPopup.vue').then(m => m.default),
|
|
}
|