feat(client): add instance info widget

This commit is contained in:
syuilo
2023-01-09 20:35:36 +09:00
parent c179d6f735
commit d06f61f23f
5 changed files with 102 additions and 4 deletions

View File

@@ -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',