feat(client): add instance info widget
This commit is contained in:
parent
c179d6f735
commit
d06f61f23f
5 changed files with 102 additions and 4 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue