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-22 02:32:58 -06:00
|
|
|
import postCard from './post-card.vue';
|
|
|
|
import userCard from './user-card.vue';
|
|
|
|
import postDetail from './post-detail.vue';
|
|
|
|
import followButton from './follow-button.vue';
|
2018-02-22 02:51:08 -06:00
|
|
|
import friendsMaker from './friends-maker.vue';
|
2018-02-22 02:57:14 -06:00
|
|
|
import notifications from './notifications.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);
|
2018-02-22 02:32:58 -06:00
|
|
|
Vue.component('mk-post-card', postCard);
|
|
|
|
Vue.component('mk-user-card', userCard);
|
|
|
|
Vue.component('mk-post-detail', postDetail);
|
|
|
|
Vue.component('mk-follow-button', followButton);
|
2018-02-22 02:51:08 -06:00
|
|
|
Vue.component('mk-friends-maker', friendsMaker);
|
2018-02-22 02:57:14 -06:00
|
|
|
Vue.component('mk-notifications', notifications);
|