2018-02-10 06:56:33 +01:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import ui from './ui.vue';
|
2018-02-13 00:24:44 +01:00
|
|
|
import uiNotification from './ui-notification.vue';
|
2018-02-11 05:02:35 +01:00
|
|
|
import home from './home.vue';
|
2018-02-11 16:41:48 +01:00
|
|
|
import timeline from './timeline.vue';
|
2018-04-07 19:30:37 +02:00
|
|
|
import notes from './notes.vue';
|
|
|
|
import subNoteContent from './sub-note-content.vue';
|
2018-02-11 16:41:48 +01:00
|
|
|
import window from './window.vue';
|
2018-04-07 19:30:37 +02:00
|
|
|
import noteFormWindow from './post-form-window.vue';
|
|
|
|
import renoteFormWindow from './renote-form-window.vue';
|
2018-03-26 09:56:46 +02:00
|
|
|
import mediaImage from './media-image.vue';
|
2018-03-26 14:54:38 +02:00
|
|
|
import mediaVideo from './media-video.vue';
|
2018-02-13 13:04:08 +01:00
|
|
|
import notifications from './notifications.vue';
|
2018-04-07 19:30:37 +02:00
|
|
|
import noteForm from './post-form.vue';
|
|
|
|
import renoteForm from './renote-form.vue';
|
|
|
|
import notePreview from './note-preview.vue';
|
|
|
|
import noteDetail from './note-detail.vue';
|
2018-02-19 10:26:20 +01:00
|
|
|
import calendar from './calendar.vue';
|
2018-02-19 15:37:09 +01:00
|
|
|
import activity from './activity.vue';
|
2018-02-22 09:51:08 +01:00
|
|
|
import friendsMaker from './friends-maker.vue';
|
2018-11-08 07:16:39 +01:00
|
|
|
import userCard from './user-card.vue';
|
2018-04-25 12:53:16 +02:00
|
|
|
import userListTimeline from './user-list-timeline.vue';
|
2018-02-23 18:46:09 +01:00
|
|
|
import widgetContainer from './widget-container.vue';
|
|
|
|
|
2018-02-10 06:56:33 +01:00
|
|
|
Vue.component('mk-ui', ui);
|
2018-02-13 00:24:44 +01:00
|
|
|
Vue.component('mk-ui-notification', uiNotification);
|
2018-02-11 05:02:35 +01:00
|
|
|
Vue.component('mk-home', home);
|
2018-02-11 16:41:48 +01:00
|
|
|
Vue.component('mk-timeline', timeline);
|
2018-04-07 19:30:37 +02:00
|
|
|
Vue.component('mk-notes', notes);
|
|
|
|
Vue.component('mk-sub-note-content', subNoteContent);
|
2018-02-11 16:41:48 +01:00
|
|
|
Vue.component('mk-window', window);
|
2018-04-07 19:30:37 +02:00
|
|
|
Vue.component('mk-post-form-window', noteFormWindow);
|
|
|
|
Vue.component('mk-renote-form-window', renoteFormWindow);
|
2018-03-26 09:56:46 +02:00
|
|
|
Vue.component('mk-media-image', mediaImage);
|
2018-03-26 14:54:38 +02:00
|
|
|
Vue.component('mk-media-video', mediaVideo);
|
2018-02-13 13:04:08 +01:00
|
|
|
Vue.component('mk-notifications', notifications);
|
2018-04-07 19:30:37 +02:00
|
|
|
Vue.component('mk-post-form', noteForm);
|
|
|
|
Vue.component('mk-renote-form', renoteForm);
|
|
|
|
Vue.component('mk-note-preview', notePreview);
|
|
|
|
Vue.component('mk-note-detail', noteDetail);
|
2018-02-19 10:26:20 +01:00
|
|
|
Vue.component('mk-calendar', calendar);
|
2018-02-19 15:37:09 +01:00
|
|
|
Vue.component('mk-activity', activity);
|
2018-02-22 09:51:08 +01:00
|
|
|
Vue.component('mk-friends-maker', friendsMaker);
|
2018-11-08 07:16:39 +01:00
|
|
|
Vue.component('mk-user-card', userCard);
|
2018-04-25 12:53:16 +02:00
|
|
|
Vue.component('mk-user-list-timeline', userListTimeline);
|
2018-02-23 18:46:09 +01:00
|
|
|
Vue.component('mk-widget-container', widgetContainer);
|