2018-02-10 06:56:33 +01:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import ui from './ui.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';
|
|
|
|
import timelinePost from './timeline-post.vue';
|
|
|
|
import timelinePostSub from './timeline-post-sub.vue';
|
|
|
|
import subPostContent from './sub-post-content.vue';
|
|
|
|
import window from './window.vue';
|
|
|
|
import postFormWindow from './post-form-window.vue';
|
2018-02-10 06:56:33 +01:00
|
|
|
|
|
|
|
Vue.component('mk-ui', ui);
|
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);
|
|
|
|
Vue.component('mk-timeline-post', timelinePost);
|
|
|
|
Vue.component('mk-timeline-post-sub', timelinePostSub);
|
|
|
|
Vue.component('mk-sub-post-content', subPostContent);
|
|
|
|
Vue.component('mk-window', window);
|
|
|
|
Vue.component('post-form-window', postFormWindow);
|