2018-02-09 23:22:14 -08:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import signin from './signin.vue';
|
|
|
|
import signup from './signup.vue';
|
2018-02-10 19:08:43 -08:00
|
|
|
import forkit from './forkit.vue';
|
2018-02-10 19:42:02 -08:00
|
|
|
import nav from './nav.vue';
|
2018-02-11 06:26:35 -08:00
|
|
|
import postHtml from './post-html';
|
2018-02-12 19:32:00 -08:00
|
|
|
import reactionIcon from './reaction-icon.vue';
|
2018-02-12 20:49:48 -08:00
|
|
|
import time from './time.vue';
|
2018-02-15 01:39:05 -08:00
|
|
|
import images from './images.vue';
|
2018-02-09 23:22:14 -08:00
|
|
|
|
|
|
|
Vue.component('mk-signin', signin);
|
|
|
|
Vue.component('mk-signup', signup);
|
2018-02-10 19:08:43 -08:00
|
|
|
Vue.component('mk-forkit', forkit);
|
2018-02-10 19:42:02 -08:00
|
|
|
Vue.component('mk-nav', nav);
|
2018-02-11 06:26:35 -08:00
|
|
|
Vue.component('mk-post-html', postHtml);
|
2018-02-12 19:32:00 -08:00
|
|
|
Vue.component('mk-reaction-icon', reactionIcon);
|
2018-02-12 20:49:48 -08:00
|
|
|
Vue.component('mk-time', time);
|
2018-02-15 01:39:05 -08:00
|
|
|
Vue.component('mk-images', images);
|