2018-02-10 09:22:14 +02:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import signin from './signin.vue';
|
|
|
|
import signup from './signup.vue';
|
2018-02-11 05:08:43 +02:00
|
|
|
import forkit from './forkit.vue';
|
2018-02-11 05:42:02 +02:00
|
|
|
import nav from './nav.vue';
|
2018-02-11 16:26:35 +02:00
|
|
|
import postHtml from './post-html';
|
2018-02-13 05:32:00 +02:00
|
|
|
import reactionIcon from './reaction-icon.vue';
|
2018-02-16 08:38:12 +02:00
|
|
|
import reactionsViewer from './reactions-viewer.vue';
|
2018-02-13 06:49:48 +02:00
|
|
|
import time from './time.vue';
|
2018-02-15 11:39:05 +02:00
|
|
|
import images from './images.vue';
|
2018-02-16 08:38:12 +02:00
|
|
|
import uploader from './uploader.vue';
|
2018-02-16 19:24:10 +02:00
|
|
|
import specialMessage from './special-message.vue';
|
2018-02-16 20:01:00 +02:00
|
|
|
import streamIndicator from './stream-indicator.vue';
|
2018-02-10 09:22:14 +02:00
|
|
|
|
|
|
|
Vue.component('mk-signin', signin);
|
|
|
|
Vue.component('mk-signup', signup);
|
2018-02-11 05:08:43 +02:00
|
|
|
Vue.component('mk-forkit', forkit);
|
2018-02-11 05:42:02 +02:00
|
|
|
Vue.component('mk-nav', nav);
|
2018-02-11 16:26:35 +02:00
|
|
|
Vue.component('mk-post-html', postHtml);
|
2018-02-13 05:32:00 +02:00
|
|
|
Vue.component('mk-reaction-icon', reactionIcon);
|
2018-02-16 08:38:12 +02:00
|
|
|
Vue.component('mk-reactions-viewer', reactionsViewer);
|
2018-02-13 06:49:48 +02:00
|
|
|
Vue.component('mk-time', time);
|
2018-02-15 11:39:05 +02:00
|
|
|
Vue.component('mk-images', images);
|
2018-02-16 08:38:12 +02:00
|
|
|
Vue.component('mk-uploader', uploader);
|
2018-02-16 19:24:10 +02:00
|
|
|
Vue.component('mk-special-message', specialMessage);
|
2018-02-16 20:01:00 +02:00
|
|
|
Vue.component('mk-stream-indicator', streamIndicator);
|