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-02-12 18:12:54 -06:00
|
|
|
import posts from './posts.vue';
|
2018-02-11 09:41:48 -06:00
|
|
|
import subPostContent from './sub-post-content.vue';
|
|
|
|
import window from './window.vue';
|
|
|
|
import postFormWindow from './post-form-window.vue';
|
2018-02-11 09:58:02 -06:00
|
|
|
import repostFormWindow from './repost-form-window.vue';
|
2018-02-12 17:24:44 -06:00
|
|
|
import analogClock from './analog-clock.vue';
|
2018-02-12 18:12:54 -06:00
|
|
|
import ellipsisIcon from './ellipsis-icon.vue';
|
2018-02-12 18:27:57 -06:00
|
|
|
import imagesImage from './images-image.vue';
|
|
|
|
import imagesImageDialog from './images-image-dialog.vue';
|
2018-02-13 06:04:08 -06:00
|
|
|
import notifications from './notifications.vue';
|
|
|
|
import postForm from './post-form.vue';
|
|
|
|
import repostForm from './repost-form.vue';
|
2018-02-16 11:24:10 -06:00
|
|
|
import followButton from './follow-button.vue';
|
2018-02-16 12:01:00 -06:00
|
|
|
import postPreview from './post-preview.vue';
|
2018-02-17 21:35:18 -06: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 00:55:17 -06:00
|
|
|
import postDetail from './post-detail.vue';
|
2018-02-19 01:18:18 -06:00
|
|
|
import settings from './settings.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-18 08:51:41 -06: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 01:08:41 -06:00
|
|
|
import wBroadcast from './widgets/broadcast.vue';
|
2018-02-19 03:26:20 -06:00
|
|
|
import wTimemachine from './widgets/timemachine.vue';
|
2018-02-21 00:30:03 -06:00
|
|
|
import wProfile from './widgets/profile.vue';
|
2018-02-21 09:07:37 -06:00
|
|
|
import wServer from './widgets/server.vue';
|
2018-02-21 10:08:49 -06:00
|
|
|
import wActivity from './widgets/activity.vue';
|
|
|
|
import wRss from './widgets/rss.vue';
|
|
|
|
import wTrends from './widgets/trends.vue';
|
|
|
|
import wVersion from './widgets/version.vue';
|
|
|
|
import wUsers from './widgets/users.vue';
|
|
|
|
import wPolls from './widgets/polls.vue';
|
|
|
|
import wPostForm from './widgets/post-form.vue';
|
|
|
|
import wMessaging from './widgets/messaging.vue';
|
|
|
|
import wChannel from './widgets/channel.vue';
|
|
|
|
import wAccessLog from './widgets/access-log.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-02-12 18:12:54 -06:00
|
|
|
Vue.component('mk-posts', posts);
|
2018-02-11 09:41:48 -06:00
|
|
|
Vue.component('mk-sub-post-content', subPostContent);
|
|
|
|
Vue.component('mk-window', window);
|
2018-02-12 17:24:44 -06:00
|
|
|
Vue.component('mk-post-form-window', postFormWindow);
|
|
|
|
Vue.component('mk-repost-form-window', repostFormWindow);
|
|
|
|
Vue.component('mk-analog-clock', analogClock);
|
2018-02-12 18:12:54 -06:00
|
|
|
Vue.component('mk-ellipsis-icon', ellipsisIcon);
|
2018-02-12 18:27:57 -06:00
|
|
|
Vue.component('mk-images-image', imagesImage);
|
|
|
|
Vue.component('mk-images-image-dialog', imagesImageDialog);
|
2018-02-13 06:04:08 -06:00
|
|
|
Vue.component('mk-notifications', notifications);
|
|
|
|
Vue.component('mk-post-form', postForm);
|
|
|
|
Vue.component('mk-repost-form', repostForm);
|
2018-02-16 11:24:10 -06:00
|
|
|
Vue.component('mk-follow-button', followButton);
|
2018-02-16 12:01:00 -06:00
|
|
|
Vue.component('mk-post-preview', postPreview);
|
2018-02-17 21:35:18 -06: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 01:18:18 -06:00
|
|
|
Vue.component('mk-post-detail', postDetail);
|
|
|
|
Vue.component('mk-settings', settings);
|
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-18 08:51:41 -06:00
|
|
|
Vue.component('mkw-nav', wNav);
|
|
|
|
Vue.component('mkw-calendar', wCalendar);
|
|
|
|
Vue.component('mkw-photo-stream', wPhotoStream);
|
2018-02-21 10:08:49 -06:00
|
|
|
Vue.component('mkw-slideshow', wSlideshow);
|
2018-02-18 08:51:41 -06:00
|
|
|
Vue.component('mkw-tips', wTips);
|
|
|
|
Vue.component('mkw-donation', wDonation);
|
|
|
|
Vue.component('mkw-notifications', wNotifications);
|
2018-02-19 01:08:41 -06:00
|
|
|
Vue.component('mkw-broadcast', wBroadcast);
|
2018-02-19 03:26:20 -06:00
|
|
|
Vue.component('mkw-timemachine', wTimemachine);
|
2018-02-21 00:30:03 -06:00
|
|
|
Vue.component('mkw-profile', wProfile);
|
2018-02-21 09:07:37 -06:00
|
|
|
Vue.component('mkw-server', wServer);
|
2018-02-21 10:08:49 -06:00
|
|
|
Vue.component('mkw-activity', wActivity);
|
|
|
|
Vue.component('mkw-rss', wRss);
|
|
|
|
Vue.component('mkw-trends', wTrends);
|
|
|
|
Vue.component('mkw-version', wVersion);
|
|
|
|
Vue.component('mkw-users', wUsers);
|
|
|
|
Vue.component('mkw-polls', wPolls);
|
|
|
|
Vue.component('mkw-post-form', wPostForm);
|
|
|
|
Vue.component('mkw-messaging', wMessaging);
|
|
|
|
Vue.component('mkw-channel', wChannel);
|
|
|
|
Vue.component('mkw-access-log', wAccessLog);
|