2018-02-09 23:56:33 -06:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import ui from './ui.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';
|
|
|
|
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-11 09:58:02 -06:00
|
|
|
import repostFormWindow from './repost-form-window.vue';
|
2018-02-09 23:56:33 -06:00
|
|
|
|
|
|
|
Vue.component('mk-ui', ui);
|
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);
|
|
|
|
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);
|
2018-02-11 09:58:02 -06:00
|
|
|
Vue.component('repost-form-window', repostFormWindow);
|