1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-29 23:25:01 +02:00

feat(frontend): chat widget

This commit is contained in:
syuilo
2025-04-15 15:37:29 +09:00
parent 7c0806f208
commit 525b6a7677
5 changed files with 60 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ export default function(app: App) {
app.component('WidgetUserList', defineAsyncComponent(() => import('./WidgetUserList.vue')));
app.component('WidgetClicker', defineAsyncComponent(() => import('./WidgetClicker.vue')));
app.component('WidgetBirthdayFollowings', defineAsyncComponent(() => import('./WidgetBirthdayFollowings.vue')));
app.component('WidgetChat', defineAsyncComponent(() => import('./WidgetChat.vue')));
}
// 連合関連のウィジェット(連合無効時に隠す)
@@ -70,6 +71,7 @@ export const widgets = [
'userList',
'clicker',
'birthdayFollowings',
'chat',
...federationWidgets,
];