2018-02-21 11:37:04 -06:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import ui from './ui.vue';
|
2018-02-21 14:30:37 -06:00
|
|
|
import home from './home.vue';
|
|
|
|
import timeline from './timeline.vue';
|
|
|
|
import posts from './posts.vue';
|
2018-02-21 15:17:02 -06:00
|
|
|
import imagesImage from './images-image.vue';
|
2018-02-21 16:06:47 -06:00
|
|
|
import drive from './drive.vue';
|
2018-02-22 02:06:19 -06:00
|
|
|
import postPreview from './post-preview.vue';
|
|
|
|
import subPostContent from './sub-post-content.vue';
|
2018-02-21 11:37:04 -06:00
|
|
|
|
|
|
|
Vue.component('mk-ui', ui);
|
2018-02-21 14:30:37 -06:00
|
|
|
Vue.component('mk-home', home);
|
|
|
|
Vue.component('mk-timeline', timeline);
|
|
|
|
Vue.component('mk-posts', posts);
|
2018-02-21 15:17:02 -06:00
|
|
|
Vue.component('mk-images-image', imagesImage);
|
2018-02-21 16:06:47 -06:00
|
|
|
Vue.component('mk-drive', drive);
|
2018-02-22 02:06:19 -06:00
|
|
|
Vue.component('mk-post-preview', postPreview);
|
|
|
|
Vue.component('mk-sub-post-content', subPostContent);
|