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