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