mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
20 lines
536 B
TypeScript
20 lines
536 B
TypeScript
import { defineComponentMetadata } from '@/components/define'
|
|
import { videoUrls } from '@/core/utils/urls'
|
|
|
|
export const component = defineComponentMetadata({
|
|
name: 'hideRecommendedLive',
|
|
entry: none,
|
|
instantStyles: [
|
|
{
|
|
name: 'hideRecommendedLive',
|
|
style: () => import('./recommended-live.scss'),
|
|
},
|
|
],
|
|
displayName: '隐藏直播推荐',
|
|
tags: [componentsTags.style, componentsTags.video],
|
|
description: {
|
|
'zh-CN': '隐藏视频页面右侧下方的直播推荐.',
|
|
},
|
|
urlInclude: videoUrls,
|
|
})
|