Sharkey/src/web/app/mobile/views/components/index.ts

20 lines
649 B
TypeScript
Raw Normal View History

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