rudeshark.net/src/web/app/mobile/views/components/index.ts

14 lines
382 B
TypeScript
Raw Normal View History

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