2018-02-10 01:22:14 -06:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import signin from './signin.vue';
|
|
|
|
import signup from './signup.vue';
|
2018-02-10 21:08:43 -06:00
|
|
|
import forkit from './forkit.vue';
|
2018-02-10 21:42:02 -06:00
|
|
|
import nav from './nav.vue';
|
2018-02-11 08:26:35 -06:00
|
|
|
import postHtml from './post-html';
|
2018-02-22 07:03:44 -06:00
|
|
|
import poll from './poll.vue';
|
2018-02-18 08:51:41 -06:00
|
|
|
import pollEditor from './poll-editor.vue';
|
2018-02-12 21:32:00 -06:00
|
|
|
import reactionIcon from './reaction-icon.vue';
|
2018-02-16 00:38:12 -06:00
|
|
|
import reactionsViewer from './reactions-viewer.vue';
|
2018-02-12 22:49:48 -06:00
|
|
|
import time from './time.vue';
|
2018-03-15 05:53:46 -05:00
|
|
|
import timer from './timer.vue';
|
2018-02-15 03:39:05 -06:00
|
|
|
import images from './images.vue';
|
2018-02-16 00:38:12 -06:00
|
|
|
import uploader from './uploader.vue';
|
2018-02-16 11:24:10 -06:00
|
|
|
import specialMessage from './special-message.vue';
|
2018-02-16 12:01:00 -06:00
|
|
|
import streamIndicator from './stream-indicator.vue';
|
2018-02-16 12:18:48 -06:00
|
|
|
import ellipsis from './ellipsis.vue';
|
2018-02-18 08:51:41 -06:00
|
|
|
import messaging from './messaging.vue';
|
|
|
|
import messagingRoom from './messaging-room.vue';
|
2018-02-20 08:17:04 -06:00
|
|
|
import urlPreview from './url-preview.vue';
|
2018-02-21 10:25:57 -06:00
|
|
|
import twitterSetting from './twitter-setting.vue';
|
2018-02-21 16:06:47 -06:00
|
|
|
import fileTypeIcon from './file-type-icon.vue';
|
2018-03-02 03:46:08 -06:00
|
|
|
import Switch from './switch.vue';
|
2018-03-06 10:54:56 -06:00
|
|
|
import Othello from './othello.vue';
|
2018-02-10 01:22:14 -06:00
|
|
|
|
|
|
|
Vue.component('mk-signin', signin);
|
|
|
|
Vue.component('mk-signup', signup);
|
2018-02-10 21:08:43 -06:00
|
|
|
Vue.component('mk-forkit', forkit);
|
2018-02-10 21:42:02 -06:00
|
|
|
Vue.component('mk-nav', nav);
|
2018-02-11 08:26:35 -06:00
|
|
|
Vue.component('mk-post-html', postHtml);
|
2018-02-22 07:03:44 -06:00
|
|
|
Vue.component('mk-poll', poll);
|
2018-02-18 08:51:41 -06:00
|
|
|
Vue.component('mk-poll-editor', pollEditor);
|
2018-02-12 21:32:00 -06:00
|
|
|
Vue.component('mk-reaction-icon', reactionIcon);
|
2018-02-16 00:38:12 -06:00
|
|
|
Vue.component('mk-reactions-viewer', reactionsViewer);
|
2018-02-12 22:49:48 -06:00
|
|
|
Vue.component('mk-time', time);
|
2018-03-15 05:53:46 -05:00
|
|
|
Vue.component('mk-timer', timer);
|
2018-02-15 03:39:05 -06:00
|
|
|
Vue.component('mk-images', images);
|
2018-02-16 00:38:12 -06:00
|
|
|
Vue.component('mk-uploader', uploader);
|
2018-02-16 11:24:10 -06:00
|
|
|
Vue.component('mk-special-message', specialMessage);
|
2018-02-16 12:01:00 -06:00
|
|
|
Vue.component('mk-stream-indicator', streamIndicator);
|
2018-02-16 12:18:48 -06:00
|
|
|
Vue.component('mk-ellipsis', ellipsis);
|
2018-02-18 08:51:41 -06:00
|
|
|
Vue.component('mk-messaging', messaging);
|
|
|
|
Vue.component('mk-messaging-room', messagingRoom);
|
2018-02-20 08:17:04 -06:00
|
|
|
Vue.component('mk-url-preview', urlPreview);
|
2018-02-21 10:25:57 -06:00
|
|
|
Vue.component('mk-twitter-setting', twitterSetting);
|
2018-02-21 16:06:47 -06:00
|
|
|
Vue.component('mk-file-type-icon', fileTypeIcon);
|
2018-03-02 03:46:08 -06:00
|
|
|
Vue.component('mk-switch', Switch);
|
2018-03-06 10:54:56 -06:00
|
|
|
Vue.component('mk-othello', Othello);
|