mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
15 lines
460 B
TypeScript
15 lines
460 B
TypeScript
import { defineAsyncComponent } from 'vue'
|
|
|
|
import { defineComponentMetadata } from '@/components/define'
|
|
|
|
export const component = defineComponentMetadata({
|
|
name: 'changeUpdateUrls',
|
|
displayName: '更新链接替换',
|
|
description: '批量更换已安装功能的更新链接的分支, 对本地安装的功能无效.',
|
|
entry: none,
|
|
tags: [componentsTags.utils],
|
|
widget: {
|
|
component: defineAsyncComponent(() => import('./Widget.vue')),
|
|
},
|
|
})
|