mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
17 lines
491 B
TypeScript
17 lines
491 B
TypeScript
import type { CustomNavbarItemInit } from '../custom-navbar-item'
|
|
|
|
export const watchlater: CustomNavbarItemInit = {
|
|
name: 'watchlater',
|
|
displayName: '稍后再看',
|
|
content: '稍后再看',
|
|
|
|
href: 'https://www.bilibili.com/watchlater/#/list',
|
|
touch: true,
|
|
active: document.URL.startsWith('https://www.bilibili.com/watchlater/'),
|
|
loginRequired: true,
|
|
|
|
boundingWidth: 380,
|
|
noPopupPadding: true,
|
|
popupContent: () => import('./NavbarWatchlater.vue').then(m => m.default),
|
|
}
|