summaryrefslogtreecommitdiff
path: root/packages/frontend/src/widgets/index.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-01-09 20:35:36 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-01-09 20:35:36 +0900
commitd06f61f23f29b2571fb720666fb8b616bdc52e95 (patch)
treebfb7c38af18d075ea51a35a0aae240af29140dbc /packages/frontend/src/widgets/index.ts
parentfeat(client): add profile widget (diff)
downloadmisskey-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.ts2
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',