mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
14 lines
493 B
TypeScript
14 lines
493 B
TypeScript
import { toggleStyle } from '@/components/styled-component'
|
|
import { ComponentMetadata } from '@/components/types'
|
|
import { videoUrls } from '@/core/utils/urls'
|
|
|
|
export const component: ComponentMetadata = {
|
|
...toggleStyle('fullEpisodeTitle', () => import('./full-episode-title.scss')),
|
|
displayName: '展开选集标题',
|
|
description: {
|
|
'zh-CN': '总是完全展开视频选集列表的标题, 注意对番剧无效.',
|
|
},
|
|
tags: [componentsTags.video],
|
|
urlInclude: videoUrls,
|
|
}
|