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

14 lines
382 B
TypeScript
Raw Normal View History

2018-02-21 17:37:04 +00:00
import Vue from 'vue';
import ui from './ui.vue';
2018-02-21 20:30:37 +00:00
import home from './home.vue';
import timeline from './timeline.vue';
import posts from './posts.vue';
2018-02-21 21:17:02 +00:00
import imagesImage from './images-image.vue';
2018-02-21 17:37:04 +00:00
Vue.component('mk-ui', ui);
2018-02-21 20:30:37 +00:00
Vue.component('mk-home', home);
Vue.component('mk-timeline', timeline);
Vue.component('mk-posts', posts);
2018-02-21 21:17:02 +00:00
Vue.component('mk-images-image', imagesImage);