feat(client): add profile widget

Resolve #7722
This commit is contained in:
syuilo
2023-01-09 20:23:06 +09:00
parent 3bc0cdbfb7
commit c179d6f735
4 changed files with 100 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import { App, defineAsyncComponent } from 'vue';
export default function(app: App) {
app.component('MkwProfile', defineAsyncComponent(() => import('./profile.vue')));
app.component('MkwMemo', defineAsyncComponent(() => import('./memo.vue')));
app.component('MkwNotifications', defineAsyncComponent(() => import('./notifications.vue')));
app.component('MkwTimeline', defineAsyncComponent(() => import('./timeline.vue')));
@@ -29,6 +30,7 @@ export default function(app: App) {
}
export const widgets = [
'profile',
'memo',
'notifications',
'timeline',