diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-09 20:35:36 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-09 20:35:36 +0900 |
| commit | d06f61f23f29b2571fb720666fb8b616bdc52e95 (patch) | |
| tree | bfb7c38af18d075ea51a35a0aae240af29140dbc /packages/frontend/src/widgets/index.ts | |
| parent | feat(client): add profile widget (diff) | |
| download | misskey-d06f61f23f29b2571fb720666fb8b616bdc52e95.tar.gz misskey-d06f61f23f29b2571fb720666fb8b616bdc52e95.tar.bz2 misskey-d06f61f23f29b2571fb720666fb8b616bdc52e95.zip | |
feat(client): add instance info widget
Diffstat (limited to 'packages/frontend/src/widgets/index.ts')
| -rw-r--r-- | packages/frontend/src/widgets/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/frontend/src/widgets/index.ts b/packages/frontend/src/widgets/index.ts index 0b81892419..10b8d94234 100644 --- a/packages/frontend/src/widgets/index.ts +++ b/packages/frontend/src/widgets/index.ts @@ -2,6 +2,7 @@ import { App, defineAsyncComponent } from 'vue'; export default function(app: App) { app.component('MkwProfile', defineAsyncComponent(() => import('./profile.vue'))); + app.component('MkwInstanceInfo', defineAsyncComponent(() => import('./instance-info.vue'))); app.component('MkwMemo', defineAsyncComponent(() => import('./memo.vue'))); app.component('MkwNotifications', defineAsyncComponent(() => import('./notifications.vue'))); app.component('MkwTimeline', defineAsyncComponent(() => import('./timeline.vue'))); @@ -31,6 +32,7 @@ export default function(app: App) { export const widgets = [ 'profile', + 'instanceInfo', 'memo', 'notifications', 'timeline', |