2018-02-21 11:37:04 -06:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import ui from './ui.vue';
|
2018-04-07 12:30:37 -05:00
|
|
|
import note from './note.vue';
|
|
|
|
import notes from './notes.vue';
|
2018-03-26 08:04:34 -05:00
|
|
|
import mediaVideo from './media-video.vue';
|
2018-04-07 12:30:37 -05:00
|
|
|
import notePreview from './note-preview.vue';
|
|
|
|
import subNoteContent from './sub-note-content.vue';
|
|
|
|
import noteCard from './note-card.vue';
|
|
|
|
import noteDetail from './note-detail.vue';
|
2018-02-22 07:03:44 -06:00
|
|
|
import notification from './notification.vue';
|
2018-02-22 02:57:14 -06:00
|
|
|
import notifications from './notifications.vue';
|
2018-02-22 03:06:32 -06:00
|
|
|
import notificationPreview from './notification-preview.vue';
|
2018-02-22 17:07:30 -06:00
|
|
|
import userTimeline from './user-timeline.vue';
|
2018-04-26 00:38:37 -05:00
|
|
|
import userListTimeline from './user-list-timeline.vue';
|
2019-02-15 00:35:52 -06:00
|
|
|
import uiContainer from './ui-container.vue';
|
2018-06-16 04:42:49 -05:00
|
|
|
import postForm from './post-form.vue';
|
2018-02-23 11:46:09 -06:00
|
|
|
|
2018-02-21 11:37:04 -06:00
|
|
|
Vue.component('mk-ui', ui);
|
2018-04-07 12:30:37 -05:00
|
|
|
Vue.component('mk-note', note);
|
|
|
|
Vue.component('mk-notes', notes);
|
2018-03-26 08:04:34 -05:00
|
|
|
Vue.component('mk-media-video', mediaVideo);
|
2018-04-07 12:30:37 -05:00
|
|
|
Vue.component('mk-note-preview', notePreview);
|
|
|
|
Vue.component('mk-sub-note-content', subNoteContent);
|
|
|
|
Vue.component('mk-note-card', noteCard);
|
|
|
|
Vue.component('mk-note-detail', noteDetail);
|
2018-02-22 07:03:44 -06:00
|
|
|
Vue.component('mk-notification', notification);
|
2018-02-22 02:57:14 -06:00
|
|
|
Vue.component('mk-notifications', notifications);
|
2018-02-22 03:06:32 -06:00
|
|
|
Vue.component('mk-notification-preview', notificationPreview);
|
2018-02-22 17:07:30 -06:00
|
|
|
Vue.component('mk-user-timeline', userTimeline);
|
2018-04-26 00:38:37 -05:00
|
|
|
Vue.component('mk-user-list-timeline', userListTimeline);
|
2019-02-15 00:35:52 -06:00
|
|
|
Vue.component('ui-container', uiContainer);
|
2018-06-16 04:42:49 -05:00
|
|
|
Vue.component('mk-post-form', postForm);
|