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-02-13 01:12:54 +01:00
|
|
|
import posts from './posts.vue';
|
2018-02-11 16:41:48 +01:00
|
|
|
import subPostContent from './sub-post-content.vue';
|
|
|
|
import window from './window.vue';
|
|
|
|
import postFormWindow from './post-form-window.vue';
|
2018-02-11 16:58:02 +01:00
|
|
|
import repostFormWindow from './repost-form-window.vue';
|
2018-02-13 00:24:44 +01:00
|
|
|
import analogClock from './analog-clock.vue';
|
2018-02-13 01:12:54 +01:00
|
|
|
import ellipsisIcon from './ellipsis-icon.vue';
|
2018-02-13 01:27:57 +01:00
|
|
|
import imagesImage from './images-image.vue';
|
|
|
|
import imagesImageDialog from './images-image-dialog.vue';
|
2018-02-13 13:04:08 +01:00
|
|
|
import notifications from './notifications.vue';
|
|
|
|
import postForm from './post-form.vue';
|
|
|
|
import repostForm from './repost-form.vue';
|
2018-02-16 18:24:10 +01:00
|
|
|
import followButton from './follow-button.vue';
|
2018-02-16 19:01:00 +01:00
|
|
|
import postPreview from './post-preview.vue';
|
2018-02-18 04:35:18 +01:00
|
|
|
import drive from './drive.vue';
|
|
|
|
import driveFile from './drive-file.vue';
|
|
|
|
import driveFolder from './drive-folder.vue';
|
|
|
|
import driveNavFolder from './drive-nav-folder.vue';
|
2018-02-19 07:55:17 +01:00
|
|
|
import postDetail from './post-detail.vue';
|
2018-02-19 08:18:18 +01:00
|
|
|
import settings from './settings.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-18 15:51:41 +01:00
|
|
|
import wNav from './widgets/nav.vue';
|
|
|
|
import wCalendar from './widgets/calendar.vue';
|
|
|
|
import wPhotoStream from './widgets/photo-stream.vue';
|
|
|
|
import wSlideshow from './widgets/slideshow.vue';
|
|
|
|
import wTips from './widgets/tips.vue';
|
|
|
|
import wDonation from './widgets/donation.vue';
|
|
|
|
import wNotifications from './widgets/notifications.vue';
|
2018-02-19 08:08:41 +01:00
|
|
|
import wBroadcast from './widgets/broadcast.vue';
|
2018-02-19 10:26:20 +01:00
|
|
|
import wTimemachine from './widgets/timemachine.vue';
|
2018-02-21 07:30:03 +01:00
|
|
|
import wProfile from './widgets/profile.vue';
|
2018-02-21 16:07:37 +01:00
|
|
|
import wServer from './widgets/server.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-02-13 01:12:54 +01:00
|
|
|
Vue.component('mk-posts', posts);
|
2018-02-11 16:41:48 +01:00
|
|
|
Vue.component('mk-sub-post-content', subPostContent);
|
|
|
|
Vue.component('mk-window', window);
|
2018-02-13 00:24:44 +01:00
|
|
|
Vue.component('mk-post-form-window', postFormWindow);
|
|
|
|
Vue.component('mk-repost-form-window', repostFormWindow);
|
|
|
|
Vue.component('mk-analog-clock', analogClock);
|
2018-02-13 01:12:54 +01:00
|
|
|
Vue.component('mk-ellipsis-icon', ellipsisIcon);
|
2018-02-13 01:27:57 +01:00
|
|
|
Vue.component('mk-images-image', imagesImage);
|
|
|
|
Vue.component('mk-images-image-dialog', imagesImageDialog);
|
2018-02-13 13:04:08 +01:00
|
|
|
Vue.component('mk-notifications', notifications);
|
|
|
|
Vue.component('mk-post-form', postForm);
|
|
|
|
Vue.component('mk-repost-form', repostForm);
|
2018-02-16 18:24:10 +01:00
|
|
|
Vue.component('mk-follow-button', followButton);
|
2018-02-16 19:01:00 +01:00
|
|
|
Vue.component('mk-post-preview', postPreview);
|
2018-02-18 04:35:18 +01:00
|
|
|
Vue.component('mk-drive', drive);
|
|
|
|
Vue.component('mk-drive-file', driveFile);
|
|
|
|
Vue.component('mk-drive-folder', driveFolder);
|
|
|
|
Vue.component('mk-drive-nav-folder', driveNavFolder);
|
2018-02-19 08:18:18 +01:00
|
|
|
Vue.component('mk-post-detail', postDetail);
|
|
|
|
Vue.component('mk-settings', settings);
|
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-18 15:51:41 +01:00
|
|
|
Vue.component('mkw-nav', wNav);
|
|
|
|
Vue.component('mkw-calendar', wCalendar);
|
|
|
|
Vue.component('mkw-photo-stream', wPhotoStream);
|
|
|
|
Vue.component('mkw-slideshoe', wSlideshow);
|
|
|
|
Vue.component('mkw-tips', wTips);
|
|
|
|
Vue.component('mkw-donation', wDonation);
|
|
|
|
Vue.component('mkw-notifications', wNotifications);
|
2018-02-19 08:08:41 +01:00
|
|
|
Vue.component('mkw-broadcast', wBroadcast);
|
2018-02-19 10:26:20 +01:00
|
|
|
Vue.component('mkw-timemachine', wTimemachine);
|
2018-02-21 07:30:03 +01:00
|
|
|
Vue.component('mkw-profile', wProfile);
|
2018-02-21 16:07:37 +01:00
|
|
|
Vue.component('mkw-server', wServer);
|