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 games: CustomNavbarItemInit = {
|
|
name: 'games',
|
|
displayName: '游戏中心',
|
|
content: '游戏中心',
|
|
|
|
touch: true,
|
|
href: 'https://game.bilibili.com/',
|
|
|
|
boundingWidth: 420,
|
|
noPopupPadding: true,
|
|
popupContent: () => import('./GamesPopup.vue').then(m => m.default),
|
|
}
|