mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
33 lines
907 B
TypeScript
33 lines
907 B
TypeScript
import type { TabMappings } from '@/ui/tab-mapping'
|
|
|
|
export const tabs: TabMappings = [
|
|
{
|
|
name: 'video',
|
|
displayName: '视频',
|
|
component: () => import('./VideoFeeds.vue').then(m => m.default),
|
|
activeLink: 'https://t.bilibili.com/?tab=8',
|
|
count: 0,
|
|
},
|
|
{
|
|
name: 'bangumi',
|
|
displayName: '番剧',
|
|
component: () => import('./BangumiFeeds.vue').then(m => m.default),
|
|
activeLink: 'https://t.bilibili.com/?tab=512,4097,4098,4099,4100,4101',
|
|
count: 0,
|
|
},
|
|
{
|
|
name: 'column',
|
|
displayName: '专栏',
|
|
component: () => import('./ColumnFeeds.vue').then(m => m.default),
|
|
activeLink: 'https://t.bilibili.com/?tab=64',
|
|
count: 0,
|
|
},
|
|
{
|
|
name: 'live',
|
|
displayName: '直播',
|
|
component: () => import('./LiveFeeds.vue').then(m => m.default),
|
|
activeLink: 'https://link.bilibili.com/p/center/index#/user-center/follow/1',
|
|
count: 0,
|
|
},
|
|
]
|