mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
16 lines
383 B
TypeScript
16 lines
383 B
TypeScript
import { defineComponentMetadata } from '@/components/define'
|
|
|
|
const name = 'hideFeedsCommentPreview'
|
|
export const component = defineComponentMetadata({
|
|
name,
|
|
tags: [componentsTags.feeds, componentsTags.style],
|
|
displayName: '隐藏动态评论预览',
|
|
entry: none,
|
|
instantStyles: [
|
|
{
|
|
style: () => import('./hide-comment-preview.scss'),
|
|
name,
|
|
},
|
|
],
|
|
})
|