2020-10-17 11:12:00 +00:00
|
|
|
import { App, defineAsyncComponent } from 'vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
export default function(app: App) {
|
|
|
|
app.component('MkwMemo', defineAsyncComponent(() => import('./memo.vue')));
|
|
|
|
app.component('MkwNotifications', defineAsyncComponent(() => import('./notifications.vue')));
|
|
|
|
app.component('MkwTimeline', defineAsyncComponent(() => import('./timeline.vue')));
|
|
|
|
app.component('MkwCalendar', defineAsyncComponent(() => import('./calendar.vue')));
|
|
|
|
app.component('MkwRss', defineAsyncComponent(() => import('./rss.vue')));
|
|
|
|
app.component('MkwTrends', defineAsyncComponent(() => import('./trends.vue')));
|
|
|
|
app.component('MkwClock', defineAsyncComponent(() => import('./clock.vue')));
|
|
|
|
app.component('MkwActivity', defineAsyncComponent(() => import('./activity.vue')));
|
|
|
|
app.component('MkwPhotos', defineAsyncComponent(() => import('./photos.vue')));
|
|
|
|
app.component('MkwDigitalClock', defineAsyncComponent(() => import('./digital-clock.vue')));
|
|
|
|
app.component('MkwFederation', defineAsyncComponent(() => import('./federation.vue')));
|
|
|
|
app.component('MkwPostForm', defineAsyncComponent(() => import('./post-form.vue')));
|
2020-12-05 13:29:55 +00:00
|
|
|
app.component('MkwSlideshow', defineAsyncComponent(() => import('./slideshow.vue')));
|
2021-01-03 13:38:32 +00:00
|
|
|
app.component('MkwServerMetric', defineAsyncComponent(() => import('./server-metric/index.vue')));
|
2020-12-30 04:07:16 +00:00
|
|
|
app.component('MkwOnlineUsers', defineAsyncComponent(() => import('./online-users.vue')));
|
2021-01-04 08:36:50 +00:00
|
|
|
app.component('MkwJobQueue', defineAsyncComponent(() => import('./job-queue.vue')));
|
2020-12-27 14:13:01 +00:00
|
|
|
app.component('MkwButton', defineAsyncComponent(() => import('./button.vue')));
|
2021-02-06 12:36:47 +00:00
|
|
|
app.component('MkwAiscript', defineAsyncComponent(() => import('./aiscript.vue')));
|
2021-09-04 08:54:24 +00:00
|
|
|
app.component('MkwAichan', defineAsyncComponent(() => import('./aichan.vue')));
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
|
|
|
export const widgets = [
|
|
|
|
'memo',
|
|
|
|
'notifications',
|
|
|
|
'timeline',
|
|
|
|
'calendar',
|
|
|
|
'rss',
|
|
|
|
'trends',
|
|
|
|
'clock',
|
|
|
|
'activity',
|
|
|
|
'photos',
|
|
|
|
'digitalClock',
|
2020-07-25 02:56:56 +00:00
|
|
|
'federation',
|
2020-10-17 11:12:00 +00:00
|
|
|
'postForm',
|
2020-12-05 13:29:55 +00:00
|
|
|
'slideshow',
|
2021-01-03 13:38:32 +00:00
|
|
|
'serverMetric',
|
2020-12-30 04:07:16 +00:00
|
|
|
'onlineUsers',
|
2021-01-04 08:36:50 +00:00
|
|
|
'jobQueue',
|
2020-12-27 14:13:01 +00:00
|
|
|
'button',
|
2021-02-06 12:36:47 +00:00
|
|
|
'aiscript',
|
2021-09-04 08:54:24 +00:00
|
|
|
'aichan',
|
2020-07-11 01:13:11 +00:00
|
|
|
];
|